Sunday 21 January 2018

Program for Even or Odd


Program for Even or Odd
/*check even or odd*/
#include<stdio.h>
#include<conio.h>
main()
{
int a;
clrscr();
printf("enter the value of a");
scanf("%d",&a);
if(a%2==0)
{
printf("%d is even",a);
}
else
printf("%d is odd",a);
getch();

}

0 comments:

Post a Comment