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