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