C Program to Check Number is Even or Odd
Here you will get C program to check given number is even or odd. We will use following simple logic in this program. If a number is divisible by 2 then it is even. If a number is not divisible by 2 then it is odd. #include<stdio.h> int main() { int n; printf(“Enter any number:”); …
