fork(10) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. unsigned int index;
  5.  
  6. printf("\nHello World\n\n");
  7.  
  8. for(index = 0; index < 20; index++) {
  9. printf("\n%d", index);
  10. }
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
Hello World


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19