Calculate whether entered year is leap year or not

#include<stdio.h>
main()
{
int year;
clrscr();
printf("\n enter the year");
scanf("%d",&year);
if(year%4==0 && year%100!=0)//(year%400==0)
printf("\n%d is a leap year \n");
else
printf("\n enter year is not leap year\n");
getch();
}

Comments