C program to display the odd numbers from 1 to 100
#include<stdio.h>
#include<conio.h>
main()
{
int i;
for(i=1;i<100;i=i+2)
printf("%d\t",i);
getch();
}
#include<stdio.h>
#include<conio.h>
main()
{
int i;
for(i=1;i<100;i=i+2)
printf("%d\t",i);
getch();
}
About Govind Prasad Joshi
Copyright (c) 2022 neb-see-solution.com All Right Reseved
No comments:
Post a Comment