Advertisement
Guest User

Untitled

a guest
Mar 26th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4.  
  5. int
  6. main(int argc, char *argv[])
  7. {
  8. while (printf("%d\n", getpid()))
  9. sleep(15);
  10.  
  11. return (1);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement