fork download
  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <unistd.h>
  4.  
  5. int main()
  6. {
  7. fork();
  8. fork();
  9. printf("Hi\n");
  10. fork();
  11. printf("Hello\n");
  12. fork();
  13. printf("Bye\n");
  14. return 0;
  15. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Hi
Hello
Bye
Hi
Hello
Bye
Hi
Hello
Bye
Hi
Hello
Bye
Hi
Hello
Bye