Write a program to find the given year is a leap year using C
#include<stdio.h>
#include<conio.h>
int main(){
int year;
printf("Enter a year:");
scanf("%d", &year);
if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0)){
printf(" %d is a leap year.",year);
}
else{
printf(" %d is not a leap year.",year);
}
return 0;
}
Output:Enter a year:2016
2016 is a leap year.
Enter a year:2022
2022 is not a leap year.
Read: Program to find the roots of the quadratic equation with its value