fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i;
  6. for(i=1;i<20;i=i+2)
  7. {
  8.  
  9.  
  10.  
  11. if(i>15)
  12. {
  13. break;
  14. }
  15. printf("%d\n",i);
  16.  
  17.  
  18. }
  19. // your code goes here
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
1
3
5
7
9
11
13
15