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

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

}


Labels