Click here to Skip to main content
15,898,580 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerBad solution, but solved Pin
Nelek26-Sep-07 21:46
protectorNelek26-Sep-07 21:46 
QuestionUsing vector over index? Pin
bosfan24-Sep-07 0:44
bosfan24-Sep-07 0:44 
AnswerRe: Using vector over index? Pin
Cedric Moonen24-Sep-07 0:52
Cedric Moonen24-Sep-07 0:52 
GeneralRe: Using vector over index? Pin
bosfan24-Sep-07 2:27
bosfan24-Sep-07 2:27 
AnswerRe: Using vector over index? Pin
nbugalia24-Sep-07 0:58
nbugalia24-Sep-07 0:58 
GeneralThats much slower Pin
jhwurmbach24-Sep-07 1:23
jhwurmbach24-Sep-07 1:23 
GeneralRe: Thats much slower Pin
bosfan24-Sep-07 3:37
bosfan24-Sep-07 3:37 
AnswerRe: Using vector over index? Pin
Signal-926-Sep-07 15:10
Signal-926-Sep-07 15:10 
QuestionTlsSetValue Pin
nitin324-Sep-07 0:38
nitin324-Sep-07 0:38 
AnswerRe: TlsSetValue Pin
David Crow24-Sep-07 3:04
David Crow24-Sep-07 3:04 
AnswerRe: TlsSetValue Pin
DevMentor.org24-Sep-07 7:04
DevMentor.org24-Sep-07 7:04 
QuestionHow to copy Directory in VC++/MFC Pin
Atul2323-Sep-07 23:49
Atul2323-Sep-07 23:49 
AnswerRe: How to copy Directory in VC++/MFC Pin
nbugalia23-Sep-07 23:59
nbugalia23-Sep-07 23:59 
AnswerRe: How to copy Directory in VC++/MFC Pin
Hamid_RT24-Sep-07 0:36
Hamid_RT24-Sep-07 0:36 
QuestionPlease help Pin
rajeevktripathi23-Sep-07 23:34
rajeevktripathi23-Sep-07 23:34 
AnswerRe: Please help Pin
nbugalia23-Sep-07 23:44
nbugalia23-Sep-07 23:44 
AnswerRe: Please help Pin
baerten23-Sep-07 23:45
baerten23-Sep-07 23:45 
GeneralRe: Please help Pin
rajeevktripathi23-Sep-07 23:52
rajeevktripathi23-Sep-07 23:52 
GeneralRe: Please help Pin
nbugalia24-Sep-07 0:05
nbugalia24-Sep-07 0:05 
GeneralRe: Please help Pin
toxcct24-Sep-07 1:55
toxcct24-Sep-07 1:55 
GeneralRe: Please help Pin
jhwurmbach24-Sep-07 1:26
jhwurmbach24-Sep-07 1:26 
GeneralRe: Please help Pin
toxcct24-Sep-07 1:56
toxcct24-Sep-07 1:56 
AnswerRe: Please help Pin
toxcct24-Sep-07 1:53
toxcct24-Sep-07 1:53 
rajeevktripathi wrote:
How to change associativity of operators in C++,


changing associativity is like changing the meaning of things (so, changing the language itself), so, no way at all.
moreover, if associativity exists like it is, there are reasons over the problem you can have with it.


rajeevktripathi wrote:
then compiler interpret this expression as
int c = (a--) - b;
what I want, is like int c = a -(--b);


then, why don't you just use spaces (or at least, parenthises like someone said) ?
write c = a - --b; and everything will be good.


AnswerRe: Please help Pin
David Crow24-Sep-07 3:07
David Crow24-Sep-07 3:07 
QuestionA generic c++ question regarding dynamic_cast in virtual inheritance Pin
_Pinux_23-Sep-07 23:21
_Pinux_23-Sep-07 23:21 

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.