Click here to Skip to main content
15,887,027 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Visual C++ Express, No MFC? Does that matter? Pin
KarstenK25-Oct-09 21:28
mveKarstenK25-Oct-09 21:28 
Questionproblem in splitter Pin
bagavathikumar22-Oct-09 1:43
bagavathikumar22-Oct-09 1:43 
AnswerRe: problem in splitter [modified] Pin
Iain Clarke, Warrior Programmer23-Oct-09 4:43
Iain Clarke, Warrior Programmer23-Oct-09 4:43 
QuestionMFC using Visual Studio 2005 Pin
RS.Ratheesh22-Oct-09 1:36
RS.Ratheesh22-Oct-09 1:36 
AnswerRe: MFC using Visual Studio 2005 Pin
Randor 22-Oct-09 2:04
professional Randor 22-Oct-09 2:04 
QuestionOutlook Contacts Pin
Anil Kumar.Arvapalli22-Oct-09 1:27
Anil Kumar.Arvapalli22-Oct-09 1:27 
AnswerRe: Outlook Contacts Pin
KarstenK22-Oct-09 22:30
mveKarstenK22-Oct-09 22:30 
QuestionWrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 1:15
professional__yash__22-Oct-09 1:15 
I tried the following in VS6.0. Created a simple "Hello World" application then added the following:

int i;
int j;
i = j = 5;

printf("%d %d %d %d %d %d\n",++i,j++,i++,++j,++i,j++);
printf("i %d j %d\n",i,j);


Now i expected the output to be:
8 7 6 7 6 5
i 8 j 8
But instead it printed as:
7 6 6 6 6 5
i 8 j 8

Confused | :confused: Confused | :confused: Confused | :confused:
AnswerRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
CPallini22-Oct-09 1:44
mveCPallini22-Oct-09 1:44 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 1:50
professional__yash__22-Oct-09 1:50 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
CPallini22-Oct-09 1:52
mveCPallini22-Oct-09 1:52 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 2:05
professional__yash__22-Oct-09 2:05 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
David Crow22-Oct-09 2:48
David Crow22-Oct-09 2:48 
AnswerRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
SandipG 22-Oct-09 1:57
SandipG 22-Oct-09 1:57 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 2:02
professional__yash__22-Oct-09 2:02 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
SandipG 22-Oct-09 2:09
SandipG 22-Oct-09 2:09 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
Covean22-Oct-09 2:29
Covean22-Oct-09 2:29 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 2:40
professional__yash__22-Oct-09 2:40 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
SandipG 22-Oct-09 2:44
SandipG 22-Oct-09 2:44 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
Covean22-Oct-09 2:48
Covean22-Oct-09 2:48 
GeneralHow do you interpret the results (I have provided my comments) Pin
__yash__22-Oct-09 2:35
professional__yash__22-Oct-09 2:35 
GeneralRe: How do you interpret the results (I have provided my comments) Pin
SandipG 22-Oct-09 2:45
SandipG 22-Oct-09 2:45 
GeneralRe: How do you interpret the results (I have provided my comments) Pin
Covean22-Oct-09 2:45
Covean22-Oct-09 2:45 
AnswerRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
David Crow22-Oct-09 2:55
David Crow22-Oct-09 2:55 
GeneralRe: Wrong evaluation of pre- and post-increment on variables: What is wrong here?!?! Pin
__yash__22-Oct-09 20:52
professional__yash__22-Oct-09 20:52 

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.