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