Answers for "c function to check odd or even"

C
1

c program to tell whether a number is an integer is even or odd

#include <stdio.h>
int main()
{
    int Num;
    printf("Test Data: ");
    scanf("%d", &Num);
    if(Num % 2 ==0)
    {
        printf("%d is an even integer", Num);
    }
    else
    {
        printf("%d is an odd integer", Num);
    }

}
Posted by: Guest on April-19-2021

Code answers related to "C"

Browse Popular Code Answers by Language