fork download
  1. #include <stdio.h>
  2. #include <unistd.h>
  3.  
  4. int main() {
  5. if (fork() && (!fork())) {
  6. if ((!fork()) || fork()) {
  7. fork();
  8. fork();
  9. }
  10. }
  11. printf("Hi ");
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Hi Hi