fork(1) download
  1. #include <stdio.h>
  2.  
  3. main() {
  4. int n;
  5. for (n=3; n<16; n++) {
  6. printf("\n%d",n);
  7. }
  8.  
  9.  
  10. }
  11.  
Success #stdin #stdout 0s 5480KB
stdin
1
1
2
3
4
5
6
7
8
9
10
stdout
3
4
5
6
7
8
9
10
11
12
13
14
15