odd number program 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);
}
}
Example 3: even odd numer c
if( num % 2 == 0 )
printf("EVEN!\n");
else
printf("ODD!\n");
Example 4: how to know if a number is even in c
if((x & 1) == 0)
printf("EVEN!\n");
else
printf("ODD!\n");