Click here to Skip to main content
15,900,705 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: time in ascii Pin
Prakash Nadar19-Feb-04 21:21
Prakash Nadar19-Feb-04 21:21 
GeneralRe: time in ascii Pin
styve20-Feb-04 2:24
styve20-Feb-04 2:24 
GeneralRe: time in ascii Pin
David Crow20-Feb-04 3:44
David Crow20-Feb-04 3:44 
GeneralMs WebBrowser GetSource! Pin
Ehsan Baghaki19-Feb-04 20:16
Ehsan Baghaki19-Feb-04 20:16 
GeneralTriggers in windows application ^_^!!! Pin
solostar***19-Feb-04 20:11
solostar***19-Feb-04 20:11 
Questionvisual c++ funny or its a bug? Pin
19-Feb-04 18:39
suss19-Feb-04 18:39 
AnswerRe: visual c++ funny or its a bug? Pin
Ehsan Baghaki19-Feb-04 20:49
Ehsan Baghaki19-Feb-04 20:49 
AnswerRe: visual c++ funny or its a bug? [Edited] Pin
Maxwell Chen19-Feb-04 20:52
Maxwell Chen19-Feb-04 20:52 
With VC++ 6.0, the result here is
100. (One hundred.)

And I think "One hundred" is a correct result. Because when such an expression:

int var = 10;
cout << (var++ * var++);

is equal to:

int var = 10;
cout << (var * var);
var = var + 1;
var = var + 1;
// var = 12 now.




<b>Maxwell Chen</b>
GeneralRe: visual c++ funny or its a bug? Pin
DimpleSurana19-Feb-04 20:59
DimpleSurana19-Feb-04 20:59 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Abin19-Feb-04 21:23
Abin19-Feb-04 21:23 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Sebastian Schneider19-Feb-04 21:46
Sebastian Schneider19-Feb-04 21:46 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Ehsan Baghaki19-Feb-04 21:46
Ehsan Baghaki19-Feb-04 21:46 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Maxwell Chen19-Feb-04 21:47
Maxwell Chen19-Feb-04 21:47 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Abin19-Feb-04 22:22
Abin19-Feb-04 22:22 
GeneralRe: visual c++ funny or its a bug? [Edited] Pin
Maxwell Chen19-Feb-04 22:41
Maxwell Chen19-Feb-04 22:41 
AnswerRe: visual c++ funny or its a bug? Pin
Mike Dimmick20-Feb-04 0:44
Mike Dimmick20-Feb-04 0:44 
GeneralRe: visual c++ funny or its a bug? Pin
abdul rafay abbasi20-Feb-04 21:44
abdul rafay abbasi20-Feb-04 21:44 
GeneralRe: visual c++ funny or its a bug? Pin
Mike Dimmick21-Feb-04 3:35
Mike Dimmick21-Feb-04 3:35 
AnswerRe: visual c++ funny or its a bug? Pin
jbarton20-Feb-04 3:31
jbarton20-Feb-04 3:31 
AnswerRe: visual c++ funny or its a bug? Pin
warlu20-Feb-04 20:48
warlu20-Feb-04 20:48 
GeneralCListBox Greying Pin
SVPG19-Feb-04 18:01
SVPG19-Feb-04 18:01 
Questionhow to share one dll with multiple instance Pin
Rajesh match19-Feb-04 17:56
Rajesh match19-Feb-04 17:56 
AnswerRe: how to share one dll with multiple instance Pin
DimpleSurana19-Feb-04 20:52
DimpleSurana19-Feb-04 20:52 
GeneralRe: how to share one dll with multiple instance Pin
Rajesh match19-Feb-04 21:23
Rajesh match19-Feb-04 21:23 
GeneralRe: how to share one dll with multiple instance Pin
DimpleSurana19-Feb-04 23:29
DimpleSurana19-Feb-04 23:29 

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.