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