#include<stdio.h>
#include<conio.h>
main()
{
int i; clrscr();
for(i=1;i<=100;i++)
{
if(i%2==0)
continue;
printf("odd number between 1 to 100 :%d ",i);
}
getch();
}
#include<conio.h>
main()
{
int i; clrscr();
for(i=1;i<=100;i++)
{
if(i%2==0)
continue;
printf("odd number between 1 to 100 :%d ",i);
}
getch();
}
0 comments:
Post a Comment
If you have any confusion, Please leave a comment. I will assist you. Do not include any URL in comments.