Leap year program in C Programming
- Tech Area
- May 12, 2024
In this tutorial, We will see how to find leap year in C programming language.
Leap year program
#include<stdio.h>
#include<conio.h>
void main()
{
int y;
clrscr();
printf("Enter year ");
scanf("%d", &y);
if((y%4 == 0 && y%100 != 0) || (y%400 == 0))
{
printf("%d is a leap year", y);
}
else
{
printf("%d is not a leap year", y);
}
getch();
}
Output
Enter year 2300
2300 is not a leap year
The number 2300 is entered by the user is stored in the y
variable. if()
checked the condition if, condition is true then leap year. If condition is false then not a leap year.
if((y%4 == 0 && y%100 != 0) || (y%400 == 0))
{
printf("%d is a leap year", y);
}
else
{
printf("%d is not a leap year", y);
}
Subscribe us via Email
Join 10,000+ subscriber
PHP Projects
Student record system project in PHP and MySQL
Last Updated: July 3, 2024
Food ordering system project in PHP and MySQL
Last Updated: June 27, 2024
Tourism management system project in PHP and MySQL
Last Updated: June 24, 2024
Restaurant table booking system project in PHP and MySQL
Last Updated: February 22, 2024
Hostel management system project in PHP and MySQL
Last Updated: February 14, 2024
Online Pizza Delivery project in PHP
Last Updated: February 4, 2024
Parking Management System project in PHP
Last Updated: November 5, 2023
Employee Attendance Management System project in PHP MySQL
Last Updated: October 3, 2023
Visitors Management System project in PHP
Last Updated: August 28, 2023
Library Management System project in PHP and MySQL
Last Updated: May 29, 2023
Expense Management System project in PHP and MySQL
Last Updated: May 22, 2023
Hospital Management System project in PHP and MySQL
Last Updated: May 5, 2023
Online quiz with e-certificate in PHP CodeIgniter with MySQL
Last Updated: April 29, 2023
SNIPE – IT Asset management system v6.1.0
Last Updated: April 21, 2023
Online Quiz System project in PHP CodeIgniter with MySQL
Last Updated: February 8, 2023
Employee Management System project in PHP
Last Updated: January 21, 2023