Write C program to check even or odd using functions

Introduction

I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
 
int isEven(int num)
{
    return !(num & 1);
}
int main()
{
    int num;
 
    // Inputting number from user
    printf("Enter any number: ");
    scanf("%d", &num);
 
    // If isEven() function return 0 then the number is even
    if(isEven(num))
    {
        //printing even number
        printf("The number is even.");
    }
    else
    {
        //printing odd number
        printf("The number is odd.");
    }
 
    return 0;
}
 

Result

Write C program to check even or odd using functions
Write C program to check even or odd using functions

Leave a Comment