Abdullah_A_lAsif_001

odd number 1 to 100

Jun 20th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int i;
  5.     for(i=1; i<=100 ; i=i+2)
  6.     {
  7.         printf("%d\n",i);
  8.     }
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment