fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%d\n", 0); // expression 1 here instead '0'
  5. printf("%d\n", 0); // expression 2 here instead '0'
  6. printf("%d\n", 0); // expression 3 here instead '0'
  7. printf("%d\n", 0); // expression 4 here instead '0'
  8. printf("%d\n", 0); // expression 5 here instead '0'
  9. printf("%d\n", 0); // expression 6 here instead '0'
  10. printf("%d\n", 0); // expression 7 here instead '0'
  11. printf("%d\n", 0); // expression 8 here instead '0'
  12. printf("%d\n", 0); // expression 9 here instead '0'
  13. printf("%d\n", 0); // expression 10 here instead '0'
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
0
0
0
0
0
0
0
0
0
0