Don’t worry, unlock all articles / blogs on PrepInsta by just simply logging in on our website
C Program to count the number of days in a given month of a year
September 30, 2022
Number of days in a given month of a given year in C
Here, in this page we will discuss the program to find the number of days in a given month of a given year in C .Number of days in any month of a year can vary specifically in February as the cycle of leap year repeats in every 4 years when the year is leap February gives the count to 29 days but the when the year is not leap it gives count to 28 days and so no of days in a year varies from 365 to 366.
Method Discussed :
Method 1: Using if-else ladder.
Method 2 : Using Switch Case.
Method 3 : Using Array
Method 1 :
Check if the given month is February.
If True Check if the year is a year leap or not.
If year is a leap year Print 29 Days, Else Print 28 Days.
Now, check if month is 1, 3, 5, 7, 8, 10, 12, then print 31 days.
//Write a program to count the number of days in a given month of a year in C
#include <stdio.h>
int main()
{
int month = 12, year=2012;
if((month==2) && ((year%400==0) || ((year%100!=0)&&(year%4==0)))){
printf("Number of days is 29");
}
else if(month==2){
printf("Number of days is 28");
}
else if(month==1 || month==3 || month==5 || month==7 || month==8 || month==10 || month==12){
printf("Number of days is 31");
}
else if(month==4 || month==6 || month==9 || month==11){
printf("Number of days is 30");
}
else printf("Invalid month");
return 0;
}
Output
Number of days is 31
Method 2 :
In this method instead of using if-else-if ladder we use switch case.
//Write a program to count the number of days in a given month of a year in C
#include<stdio.h>
int main()
{
int month = 12, year=2012;
switch (month) {
// Cases for 31 Days
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
printf("Number of days is 31 Days.");
break;
// Cases for 30 Days
case 4:
case 6:
case 9:
case 11:
printf("Number of days is 30 Days.");
break;
// Case for 28/29 Days
case 2:
if((year%400==0) || ((year%100!=0)&&(year%4==0)))
printf("Number of days is 29");
else printf("Number of days is 28");
break;
default:
printf("Invalid Month.");
break;
}
return 0;
}
Output
Number of days is 31
Method 3 :
In this method instead of using if-else-if ladder or switch case, we use array.
//Write a program to count the number of days in a given month of a year in C
#include<stdio.h>
int main()
{
int arr[12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
int month = 12, year=2012;
//For checking leap year
if(month==2 && ((year%400==0) || ((year%100!=0)&&(year%4==0))))
printf("Number of days is %d", arr[month-1]+1);
else printf("Number of days is %d",arr[month-1]);
return 0;
}
Login/Signup to comment