#include <stdio.h> int main() { int num; printf("Enter a
number: "); scanf("%d", &num); if(num % 2 == 0) printf("The number
is Even."); else printf("The number is Odd."); return 0; }
#include <stdio.h> int main() { int num = 10; if(num % 2 ==
0) printf("The number is Even."); else printf("The number is
Odd."); return 0; }