Odd Number Series in C language October 10, 2018 Odd Number Series in C language #include<stdio.h> #include<conio.h> void main() { int a,i; for(i=1;i<=100;i++) if(i%2!=0) { printf("%d\n",i); } } Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment