if else statement even odd c program
This is an if else statement even odd c program. It inputs a number from user and checks it for even or odd number. It displays a suitable message accordingly. /*input a number. Check whether this number is even or odd */ #include<stdio.h> int main() { int num; printf(“Enter a number to check for even… Read More »