Computer Science, asked by janvibh7861, 1 year ago

7) c program to find whether the given year is leap year or not

Answers

Answered by Anonymous
1

#include <stdio.h>

int main()

{

int year;

printf("Enter a year: ");

scanf("%d",&year);

if(year%4 == 0)

{

if( year%100 == 0)

{

// year is divisible by 400, hence the year is a leap year

if ( year%400 == 0)

printf("%d is a leap year.", year);

else

printf("%d is not a leap year.", year);

}

else

printf("%d is a leap year.", year );

}

else

printf("%d is not a leap year.", year);

return 0;

}

if you find it useful than mark it as brainist and follow me please

Similar questions