fork download
  1. #include <stdio.h>
  2. #include <unistd.h>
  3. int main()
  4. {
  5. /* fork a child process */
  6. fork();
  7. /* fork another child process */
  8. fork();
  9. /* and fork another */
  10. fork();
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5224KB
stdin
Standard input is empty
stdout
Standard output is empty