Share Post:
#include <stdio.h>
#include<conio.h>
int main()
{
int year;
printf("Enter a year to check if it is a leap year\n");
scanf("%d", &year);
if ( year%400 == 0)
printf("%d is a leap year.\n", year);
else if ( year%100 == 0)
printf("%d is not a leap year.\n", year);
else if ( year%4 == 0 )
printf("%d is a leap year.\n", year);
else
printf("%d is not a leap year.\n", year);
return 0;
}
C program to find whether the year entered by user is a leap year or not.Saturday, March 8, 2014
RELATED POSTS
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment