C Program to Check Leap Year

You are Here:

What is Leap Year?

A leap year is a calendar year containing one additional day added to keep the calendar year synchronized with the astronomical or seasonal year. For example, 2024 is a leap year.

Tips: It is recommended to use our online Leap Year calculator for better understanding.

Condition for Leap Year

To check whether a year is a leap year or not, the year should satisfy at least one of the following two conditions

  1. A year should be exactly divisible by 4, but, not by 100.
  2. A year should be exactly divisible by 4, 100 and 400 at the same time.

Check Leap Year

In the following example, we will check whether the given year (2012) is leap year or not.

Example

C Compiler
#include <stdio.h> int main() { int year = 2012; if(year % 4 == 0) { if((year % 100 == 0) && (year % 400 != 0)) 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; }

Output

2012 is a leap year

Leap Years between the Given Range

In the following example, we will find all the Leap Years between 2000 and 2030.

Example

C Compiler
#include <stdio.h> int main() { int start = 2000; int end = 2030; printf("Leap years between %d and %d:\n", start, end); for(start=start; start<=end; start++) { if(start % 4 == 0) { if((start % 100 == 0) && (start % 400 != 0)) { // Not a leap year } else printf("%d ", start); } } return 0; }

Output

Leap years between 2000 and 2030: 2000 2004 2008 2012 2016 2020 2024 2028

Check Leap Year for any Given Year

In the following example, we will check whether the given year is a leap year or not.

Example

C Compiler
#include <stdio.h> int main() { int year; printf("Enter a year: "); scanf("%d", &year); if(year % 4 == 0) { if((year % 100 == 0) && (year % 400 != 0)) 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; }

Output

Enter a year: 2022 2022 is not a leap year

Reminder

Hi Developers, we almost covered 98% of String functions and Interview Question on C with examples for quick and easy learning.

We are working to cover every Single Concept in C.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author