Guest User

Untitled

a guest
Jun 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <ctype.h>
  3. #include <stdio.h>
  4. #include <unistd.h>
  5. #include <string.h>
  6. #include <sys/resource.h>
  7. #include <pthread.h>
  8.  
  9. main ()
  10. {
  11. int i, j;
  12. printf ("\n");
  13. for (i=0; i<10; i++)
  14. {
  15. printf ("-");
  16. j = system("sleep 0.5");
  17. }
  18. printf ("\n");
  19. }
Add Comment
Please, Sign In to add comment