C programming to find the year is a leap year or not that year entered by the user?
This C language programming is free all type of errors like the compiler and runtime errors and this programming is tested to compile and then run the program code.
Here is only programming code with the output. This programming output is customized to understand easily.
Program to find a year is leap or not in the c programming
#include
void main()
{
int year;
printf(“Please Enter a year: “);
scanf(“%d”,&year);
if(year%100 != 0)
{
if(year%4 == 0){
printf(“Year %d is a leap Year.n”, year);
}
else{
printf(“Year %d is not leap Year.n”, year);
}
}
else
{
if(year%400 == 0){
printf(“Year %d is a leap Year.n”, year);
}
else{
printf(“Year %d is not a leap Year.n”, year);
}
}
getch();
}
Please Enter a year:2016
Year 2016 is a leap Year.
Please Enter a year:2014
Year 2014 is not a leap Year.
I make this programming and hope you are like the post if are you like the post you can please comment and Share the post to reach more people.
If any doubt about this C programming code or input & output please comment below
If you have another question about C programming send an email by contacting us form are given on the page right side.
Please share your experience about this post,
Thank You!