/*****************************************************************/ // File : oddeven.c // Purpose : To check whether the given number is ODD or EVEN. // Author : Nanda Kishor K N // Mail Id : knnkishor@yahoo.com, nandakishorkn@rediffmail.com // Website : www.c4swimmers.esmartguy.com ( WEB MASTER ) // Group : c4swimmers@yahoogroups.com ( GROUP OWNER ) /*****************************************************************/ /* W.A.P. to find out the given number is Odd or Even. */ #include /* Name : main() Purpose : This is the main function that Check whether the given number is ODD or EVEN. This does not call any other function. Parameter : None */ int main() { // Variable Declarations & Initialization // Naming conventions are used like all integer variables should begin with 'i' int iNum, iRem; printf("Enter number : "); scanf("%d",&iNum); // Check whether the given number is ODD or EVEN. iRem = iNum % 2; if (iRem == 0) printf("Given number is EVEN"); else printf("Given number is ODD"); return 0; } // End of Program