Showing posts with label WAP TO FIND OUT YEAR IS LEAP OR NOT (IF-ELSE). Show all posts
Showing posts with label WAP TO FIND OUT YEAR IS LEAP OR NOT (IF-ELSE). Show all posts

Tuesday, January 4, 2011

LEAP YEAR

WAP TO FIND OUT YEAR IS LEAP OR NOT (IF-ELSE)
void main ()
{
int a;
clrscr ();
printf ("Enter the Year: ");
scanf("%d",&a);
if (a%4==0)
{
printf ("\nYear is Leap");
}
else
{
printf("\nYear is not Leap");
}
getch ();
}