Click here to Skip to main content
15,915,062 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 21:17
Naveen10-Jun-08 21:17 
JokeRe: How can get total days of Month? Pin
Naveen10-Jun-08 19:54
Naveen10-Jun-08 19:54 
GeneralRe: How can get total days of Month? Pin
Hamid_RT10-Jun-08 20:01
Hamid_RT10-Jun-08 20:01 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 20:10
Naveen10-Jun-08 20:10 
GeneralRe: How can get total days of Month? Pin
BadKarma10-Jun-08 20:22
BadKarma10-Jun-08 20:22 
GeneralRe: How can get total days of Month? Pin
Naveen10-Jun-08 20:28
Naveen10-Jun-08 20:28 
JokeRe: How can get total days of Month? Pin
BadKarma10-Jun-08 20:36
BadKarma10-Jun-08 20:36 
QuestionRe: How can get total days of Month? Pin
CPallini10-Jun-08 21:57
mveCPallini10-Jun-08 21:57 
Should I repeat myself?

int daysOfMonth(int month, int year)
{
  switch( month )
  {
    case 4:
    case 6:
    case 9:
    case 11:
    return 30;
    case 2:
    return  year % 400 ? year % 100 ? year % 4 ? 28 : 29 : 28 : 29;
    default:
    return 31;
  }
} 

 :-D 


If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler.
-- Alfonso the Wise, 13th Century King of Castile.

This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong.
-- Iain Clarke


AnswerRe: How can get total days of Month? Pin
Hamid_RT11-Jun-08 1:13
Hamid_RT11-Jun-08 1:13 
GeneralRight! Pin
CPallini11-Jun-08 1:32
mveCPallini11-Jun-08 1:32 
AnswerRe: How can get total days of Month? Pin
Rajesh R Subramanian12-Jun-08 0:35
professionalRajesh R Subramanian12-Jun-08 0:35 
GeneralRe: How can get total days of Month? Pin
CPallini12-Jun-08 0:49
mveCPallini12-Jun-08 0:49 
GeneralRe: How can get total days of Month? Pin
Rajesh R Subramanian12-Jun-08 1:02
professionalRajesh R Subramanian12-Jun-08 1:02 
AnswerRe: How can get total days of Month? Pin
Rajesh R Subramanian12-Jun-08 0:47
professionalRajesh R Subramanian12-Jun-08 0:47 
GeneralRe: How can get total days of Month? Pin
CPallini12-Jun-08 1:06
mveCPallini12-Jun-08 1:06 
QuestionTime limited Demo Pin
RaymondM10-Jun-08 10:04
RaymondM10-Jun-08 10:04 
AnswerRe: Time limited Demo Pin
David Crow10-Jun-08 10:13
David Crow10-Jun-08 10:13 
GeneralRe: Time limited Demo Pin
RaymondM10-Jun-08 10:52
RaymondM10-Jun-08 10:52 
GeneralRe: Time limited Demo Pin
Graham Shanks10-Jun-08 12:18
Graham Shanks10-Jun-08 12:18 
GeneralRe: Time limited Demo Pin
Maximilien10-Jun-08 12:28
Maximilien10-Jun-08 12:28 
GeneralRe: Time limited Demo Pin
RaymondM10-Jun-08 22:05
RaymondM10-Jun-08 22:05 
GeneralRe: Time limited Demo Pin
Graham Shanks10-Jun-08 23:03
Graham Shanks10-Jun-08 23:03 
GeneralRe: Time limited Demo Pin
RaymondM11-Jun-08 11:07
RaymondM11-Jun-08 11:07 
GeneralRe: Time limited Demo Pin
Graham Shanks11-Jun-08 23:31
Graham Shanks11-Jun-08 23:31 
GeneralRe: Time limited Demo Pin
RaymondM12-Jun-08 0:02
RaymondM12-Jun-08 0:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.