Free C programs with output, C++ (C plus plus), programs c programming language, object oriented programming, c programs codes, c program shortcuts, history of c programming language, c programming compilers
Sunday, December 14, 2008
Program to find whether a number is odd or even
#include int main() { int number ; printf("Enter a whole number\n"); scanf("%d",&number); if(number % 2 == 0) printf("number is even.\n"); else printf("number is odd.\n");
No comments:
Post a Comment