C Program to Check Whether a Number is Even or Odd

Spread the love
Rate this post
#include <stdio.h>
int main()
{
    int n;

    printf("Enter an integer: ");
    scanf("%d", &n);

    // Number will be even if the number is perfectly divisible by 2
    if(number % 2 == 0)
        printf("%d is even number.",n);
    else
        printf("%d is odd Number.",n);

    return 0;
}

Discover more from Shout Me Crunch

Subscribe to get the latest posts sent to your email.

Leave a Comment