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