fork(1) download
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <sys/types.h>
  4.  
  5. #define BUF_SIZE 100
  6.  
  7. int main()
  8. {
  9. setbuf(stdout, NULL);
  10.  
  11. printf("hi");
  12.  
  13. fork();
  14. fork();
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
hi