Program to Check if the year is Leap Year using C language
Program to Check Leap Year Example #include <conio.h> #include <stdio.h> void main() { int year; printf(“Enter a year: “); scanf(“%d”, […]
Program to Check if the year is Leap Year using C language Read More »