Advertisement
Aminpro

[ECP 1016]For loop

Jul 1st, 2012
287
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. //https://www.facebook.com/AminproPastebin
  2.  
  3. #include <stdio.h>
  4.  
  5. int main(void)
  6. {
  7.     int i;
  8.          for( i=1; i<=100 ; i+=2)
  9.            printf("%d  ", i);
  10.                  
  11.        
  12.          getchar();
  13.          }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement