Click here to Skip to main content
15,892,537 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how to type a string on my window? Pin
Hamid_RT17-May-06 20:11
Hamid_RT17-May-06 20:11 
GeneralRe: how to type a string on my window? Pin
samfromcn17-May-06 20:36
samfromcn17-May-06 20:36 
QuestionNeed help!!! Pin
samfromcn18-May-06 15:27
samfromcn18-May-06 15:27 
QuestionDifference between "C structure" and "C++ structure". Pin
Scorpio17-May-06 19:38
Scorpio17-May-06 19:38 
AnswerRe: Difference between "C structure" and "C++ structure". Pin
_AnsHUMAN_ 17-May-06 19:46
_AnsHUMAN_ 17-May-06 19:46 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
Scorpio17-May-06 19:49
Scorpio17-May-06 19:49 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
_AnsHUMAN_ 17-May-06 19:55
_AnsHUMAN_ 17-May-06 19:55 
AnswerRe: Difference between "C structure" and "C++ structure". Pin
Laxman Auti17-May-06 20:11
Laxman Auti17-May-06 20:11 
We may have a Constructer's for C++ Structures(look the Following code)
C++ Structure's can be initialized/copied by overloading the Assignment Operator Like following
struct Mypoint
{
int x,y;
Mypoint() : x(0),y(0){};
const Mypoint &operator = (const Mypoint &me)
{
    x=me.x;
    y=me.y;
    return *this;
};



Knock out 'T' from CAN'T ,
You 'CAN' if you think you 'CAN'
Cool | :cool:
GeneralRe: Difference between "C structure" and "C++ structure". Pin
ThatsAlok17-May-06 20:35
ThatsAlok17-May-06 20:35 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
ThatsAlok17-May-06 20:33
ThatsAlok17-May-06 20:33 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
ThatsAlok17-May-06 20:21
ThatsAlok17-May-06 20:21 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
_AnsHUMAN_ 17-May-06 20:41
_AnsHUMAN_ 17-May-06 20:41 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
ThatsAlok17-May-06 20:48
ThatsAlok17-May-06 20:48 
GeneralRe: Difference between "C structure" and "C++ structure". Pin
knoxplusplus23-May-06 8:10
knoxplusplus23-May-06 8:10 
AnswerRe: Difference between "C structure" and "C++ structure". Pin
Hamid_RT17-May-06 19:47
Hamid_RT17-May-06 19:47 
AnswerRe: Difference between "C structure" and "C++ structure". Pin
NiceNaidu18-May-06 1:19
NiceNaidu18-May-06 1:19 
QuestionErasing non client area Pin
Asha Udupa17-May-06 19:15
Asha Udupa17-May-06 19:15 
AnswerRe: Erasing non client area Pin
led mike17-May-06 19:22
led mike17-May-06 19:22 
GeneralRe: Erasing non client area Pin
Asha Udupa17-May-06 19:45
Asha Udupa17-May-06 19:45 
QuestionEarly and late binding VC++/C++ Pin
Scorpio17-May-06 19:15
Scorpio17-May-06 19:15 
AnswerRe: Early and late binding VC++/C++ Pin
led mike17-May-06 19:20
led mike17-May-06 19:20 
Questionwhile Debugging Pin
Krishnatv17-May-06 19:10
Krishnatv17-May-06 19:10 
AnswerRe: while Debugging Pin
Hamid_RT17-May-06 19:13
Hamid_RT17-May-06 19:13 
AnswerRe: while Debugging Pin
led mike17-May-06 19:16
led mike17-May-06 19:16 
GeneralRe: while Debugging Pin
Krishnatv17-May-06 21:24
Krishnatv17-May-06 21:24 

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.