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