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.  
Success #stdin #stdout 0s 5404KB
stdin
Standard input is empty
stdout
3
4
5
6
7
8
9
10
11
12
13
14
15