Click here to Skip to main content
15,890,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionTechnology Migration Pin
Chitrack3-Aug-06 3:47
Chitrack3-Aug-06 3:47 
QuestionCommand Prompt commands from vc++ gui [modified] Pin
vineet14083-Aug-06 3:18
vineet14083-Aug-06 3:18 
AnswerRe: Command Prompt commands from vc++ gui Pin
David Crow3-Aug-06 4:20
David Crow3-Aug-06 4:20 
GeneralRe: Command Prompt commands from vc++ gui Pin
vineet14083-Aug-06 8:24
vineet14083-Aug-06 8:24 
QuestionFunction with default arguments Pin
Andy Rama3-Aug-06 3:03
Andy Rama3-Aug-06 3:03 
AnswerRe: Function with default arguments Pin
toxcct3-Aug-06 3:06
toxcct3-Aug-06 3:06 
GeneralRe: Function with default arguments [modified] Pin
Andy Rama3-Aug-06 3:07
Andy Rama3-Aug-06 3:07 
AnswerRe: Function with default arguments Pin
Nyarlatotep3-Aug-06 3:07
Nyarlatotep3-Aug-06 3:07 
Only the last arguments in the arguments list can assume a default value.

"void Show(int i = 1729,double d);" is not correct

If you need to pass int or double you can use polymorphism ...

void Show( int i= 1729 );
void Show( double d=3.14);
void Show(int i, double d);
GeneralRe: Function with default arguments Pin
Zac Howland3-Aug-06 3:45
Zac Howland3-Aug-06 3:45 
GeneralRe: Function with default arguments Pin
Nyarlatotep3-Aug-06 3:48
Nyarlatotep3-Aug-06 3:48 
GeneralRe: Function with default arguments Pin
Zac Howland3-Aug-06 3:53
Zac Howland3-Aug-06 3:53 
AnswerRe: Function with default arguments Pin
Gary R. Wheeler3-Aug-06 3:12
Gary R. Wheeler3-Aug-06 3:12 
AnswerRe: Function with default arguments Pin
Zac Howland3-Aug-06 3:43
Zac Howland3-Aug-06 3:43 
AnswerRe: Function with default arguments Pin
David Crow3-Aug-06 4:34
David Crow3-Aug-06 4:34 
GeneralRe: Function with default arguments Pin
Gary R. Wheeler3-Aug-06 5:30
Gary R. Wheeler3-Aug-06 5:30 
AnswerRe: Function with default arguments Pin
Hamid_RT4-Aug-06 6:50
Hamid_RT4-Aug-06 6:50 
QuestionTime zones [modified] Pin
Nyarlatotep3-Aug-06 3:00
Nyarlatotep3-Aug-06 3:00 
QuestionRe: Time zones Pin
David Crow4-Aug-06 3:11
David Crow4-Aug-06 3:11 
AnswerRe: Time zones Pin
Nyarlatotep4-Aug-06 3:19
Nyarlatotep4-Aug-06 3:19 
GeneralRe: Time zones Pin
David Crow4-Aug-06 4:07
David Crow4-Aug-06 4:07 
GeneralRe: Time zones [modified] Pin
Nyarlatotep4-Aug-06 4:19
Nyarlatotep4-Aug-06 4:19 
QuestionRe: Time zones Pin
David Crow4-Aug-06 4:30
David Crow4-Aug-06 4:30 
AnswerRe: Time zones Pin
Nyarlatotep4-Aug-06 4:41
Nyarlatotep4-Aug-06 4:41 
GeneralRe: Time zones Pin
David Crow4-Aug-06 5:47
David Crow4-Aug-06 5:47 
QuestionUntitled document/aplication?!!?! Pin
tanarnelinistit3-Aug-06 2:34
tanarnelinistit3-Aug-06 2:34 

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.