even number 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);
// True if num is perfectly divisible by 2
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);
}
}
Example 3: even odd c
if( num % 2 == 0 )
printf("EVEN!\n");
else
printf("ODD!\n");