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