Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Utilização da função "Sleep". Necessita da livraria "unistd.h" para manter a funcionalidade no standard C99. */
- #include <stdio.h>
- #include <unistd.h> //para maneter compatibilidade com o C99
- int main (int argc, const char * argv[])
- {
- printf("Hello, World!\n");
- sleep(10);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement