// Find number is even or odd #include<stdio.h> int main() { int a; printf("Enter Any Number : \n"); scanf("%d",&a); printf("----------------------\n"); if(a%2==0) { printf("\n Number is Even."); } else { printf("\n Number is Odd."); } return 0; }Note: Click on copy button to copy the given code and you can paste it in any online compiler to see the result, IF YOU ARE A MOBILE USER THEN DOWNLOAD "CODING C"(Free App) COMPILER FROM GOOGLE PLAY STORE.