#include<stdio.h>
int main()
{
int i,n,sum=0;
printf("Enter the last number\n");
scanf("%d",&n);
printf("All odd number from 1to %d is\n",n);
for(i=1;i<=n;i+=2)
{
printf("%d ",i);
}
}
OUTPUT
Enter the last number
9
All odd number from 1 to 9 is
1 3 5 7 9
Comments
Post a Comment