Showing posts with label Program to find whether a number is odd or even. Show all posts
Showing posts with label Program to find whether a number is odd or even. Show all posts

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");

return 0;
}

Labels