C Program to Check whether the number is Even or Odd|how to find odd and even numbers in c programming|E-studyblog

In this Article, you will learn how to  Check whether the number is Even or odd. We have shared the source code of odd and even number in c program. You can follow this article to get the source code of how to find odd and even numbers in c programming. you can share this article with your friends who all are interested in c programming

C Program to Check whether the number is Even or Odd|
C Program to Check whether the number is Even or Odd

Click on this link below to get some more c programs:



Even number|Odd Number|

An even number is a number which is divided by 2 (two) and has 0 (zero) remainder or no remainder.

Some Examples of even number are :2,4,6,8,10,,,,,,


An odd number is a number which is also divided by 2 (two),but has its remainder or fraction.

Some Examples of odd number are:1,3,5,7,9,11...….


C Program to Check whether the number is Even or Odd|


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
/* C program to check whether a number is Even od Odd */

#include<stdio.h>
int main(){
	int n;
	printf("\nEnter an Integer:");
	scanf("%d",&n);
	if(n%2==0)
	{
		printf("The number is an even number ");
	}
		else
		{
		printf("The number is an odd number");
		return 0;
        }
}


Output:

C Program to Check whether the number is Even or Odd|how to find odd and even numbers in c programming|E-studyblog


C Program to Check whether the number is Even or Odd|how to find odd and even numbers in c programming|E-studyblog







I hope you have read our Article C Program to check whether the number is even or oddand  you have collected lots of information from there. If you like the post, then please comment and share among your friends and family. you can write your opinion about my post in the comment box. 


Thank you!




No comments:

Post a Comment

If you have any queries ,please let us know

C Program to Check whether the number is Even or Odd|how to find odd and even numbers in c programming|E-studyblog

I n this Article, you will learn how to   Check  whether the number is  Even or odd. We have shared the source code of odd and even number i...