fork download
  1. #include <stdio.h>
  2.  
  3. int main ()
  4. {
  5. int i;
  6.  
  7. for (i = 0; i < 2; i ++) {
  8. fork();
  9. printf (".");
  10. }
  11. return 0;
  12. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
....