Answers for "calendar in c"

C
0

calendar in c

if(year% 4 == FALSE && year%100 != FALSE || year%400 == FALSE)
{
	// It is a leap year and February has 29 days.
}
else
{
	// It is not a leap year, so February has 28 days.
}
Posted by: Guest on December-01-2021

Code answers related to "C"

Browse Popular Code Answers by Language