how to check if a number is even in c code example
Example 1: c code for even numbrrs
#include <stdio.h>
int main() {
int num;
printf("Enter an integer: ");
scanf("%d", &num);
if(num % 2 == 0)
printf("%d is even.", num);
else
printf("%d is odd.", num);
return 0;
}
Example 2: c program to tell whether a number is an integer is even or odd
#include <stdio.h>
int main()
{
int Num;
printf("Test Data: ");
scanf("%d", &Num);
if(Num % 2 ==0)
{
printf("%d is an even integer", Num);
}
else
{
printf("%d is an odd integer", Num);
}
}