C Program to Check Number is Even or Odd

Here you will get C program to check given number is even or odd.

We will use following simple logic in this program.

If a number is divisible by 2 then it is even.

If a number is not divisible by 2 then it is odd.

#include<stdio.h>

int main()
{
	int n;
	printf("Enter any number:");
	scanf("%d",&n);
	
	if(n%2==0)
		printf("The number is even");
	else
		printf("The number is odd");

	return 0;		
}

 

Output

Enter any number:17
The number is odd

Leave a Comment

Your email address will not be published. Required fields are marked *