Problem
Write a program in C language to check whether a given number is even or odd.
How to check if a Number is Odd or Even in C ?
An integer that is divisible by 2 is an even number and that is not divisible by 2 is an odd number. Example of even number is 2 , 4, 12 etc.
Example of an odd number is 3 , 5 , 25 etc.
Here’s a program to find out if the number is an even number or odd number in C programming language.
#include <stdio.h>
int main()
{
int input;
printf("AbundantCode.com's coding sample\n");
printf("Input a number: ");
scanf("%d", &input);
if(input % 2 == 0)
printf("%d is an even number", input);
else
printf("%d is an odd number", input);
return 0;
}Output
AbundantCode.com’s coding sample
Input a number: 14
14 is an even number
Leave a Reply