Today We Run a program to print 1 to n even numbers and odd number in c programming. Here I show you, how use of while loop in c programming with Example
This c language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.
Print 1 to n even numbers in c
#include<conio.h>
void main();{
int n, i=0;
clrscr();
printf (“Enter a number to want to print odd no. list: “);
scanf(“%d”,&n);
printf(“The Even Numbers list is:n”);
while(i<=n){
if((i%2)==0){
printf(“%dt”, n);
}
i++;
}
getch();
}
The Even Numbers list is:
0 2 4 6 8
Print 1 to n odd numbers in c
#include<conio.h>
void main();{
int n, i=0;
clrscr();
printf (“Enter a number to want to print odd no. list: “);
scanf(“%d”,&n);
printf(“The odd Numbers list is:n”);
while(i<=n){
if((i%2)==1){
printf(“%dt”, n);
}
i++;
}
getch();
}
The odd Numbers list is:
1 3 5 7 9
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this c programming code or input & output please comment below
If you have another question about c programming send an email by contacting us form are given on the page right side.
I am Try to Help in your Programming Language by Programming Shortcut
Please any query email programmingshortcut@gmail.com
Please comment your experience on this post,
Thank You!