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. fork();
  10. fork();
  11.  
  12. printf("Hello from %d\n", getpid());
  13. return 0;
  14. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
Hello from 769197
Hello from 769203