Skip to content

Instantly share code, notes, and snippets.

@Marzogh
Created July 22, 2015 21:18
Show Gist options
  • Save Marzogh/d201973ecc5ad939c634 to your computer and use it in GitHub Desktop.
Save Marzogh/d201973ecc5ad939c634 to your computer and use it in GitHub Desktop.
int calcNoOfDays(int Month, int Year)
{
int noOfDays[] =
{ 0, 31, 0, 31, 30, 31, 30, 31,
31, 30, 31, 30, 31
};
if (Month == 2) {
if (Year % 4 == 0 || Year % 400 == 0)
noOfDays[2] = 29;
else if (Year % 4 != 0 || Year % 100 == 0)
noOfDays[2] = 28;
}
return noOfDays[Month];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment