Today We Run a program to check a number is even number or an odd number in c.
This session is how to check a number is even or odd in c Programming. Here we show you, how use of For 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.
How to Find even or odd number in c Programming?
#include
void main();{
int n;
clrscr();
printf (“Enter the number to ckeck even or odd number: “);
scanf(“%d”,&n);
if((n%2)==0){
printf(“n%d is a Even Number”, n);
}
else{
printf(“n%d is a Odd Number”, n);
}
getch();
}
4 is an Even number
Enter the number to check even or odd number: 5
5 is an Odd number
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 share your experience about this post,
Thank You!