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