Any year is input through the keyboard. Write a program to determine whether the year is a leap year or not. byHarshvardhan Tandon •May 19, 2021 #include<stdio.h> void main() { int year; printf("\nEnter year="); scanf("%d",&year); if(year%100==0) { if(year%400==0) printf("\nIt is a leap year"); else printf(…