fork download
  1. #include <stdio.h>
  2. #include <sys/types.h>
  3. #include <unistd.h>
  4.  
  5. /******************************************************************************
  6.  
  7.   Online C Compiler.
  8.   Code, Compile, Run and Debug C program online.
  9. Write your code in this editor and press "Run" button to compile and execute it.
  10.  
  11. *******************************************************************************/
  12.  
  13. int main()
  14. {
  15. fork();
  16. fork();
  17. printf("Hello World\n");
  18. fork();
  19. printf("test\n");
  20.  
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0s 5304KB
stdin
Standard input is empty
stdout
Hello World
test
Hello World
test
Hello World
test