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