Sunday, September 4, 2016

Tags

PROGRAM TO CHECK A NUMBER IS EVEN OR ODD:
#include<stdio.h>
#include<conio.h>
main()
{int a;
printf("Enter Any Integer");
scanf("%d",&a);
if(a%2==0)
{printf("Even Number");
}
else{printf("Odd Number");
}getch();
}.