Write a program to check whether a given year is leap year or not
#include <stdio.h> int main() { int year; // Input year from user printf(“Enter a year: “); scanf(“%d”, &year); // Leap year logic if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) { printf(“%d is a leap year.\n”, year); } else { printf(“%d is not a leap […]


