Click here to Skip to main content
16,018,805 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Crazy fgets stuff Pin
stevelam23-Aug-06 4:53
stevelam23-Aug-06 4:53 
GeneralRe: Crazy fgets stuff Pin
Rage23-Aug-06 5:05
professionalRage23-Aug-06 5:05 
GeneralRe: Crazy fgets stuff Pin
stevelam23-Aug-06 5:30
stevelam23-Aug-06 5:30 
AnswerRe: Crazy fgets stuff Pin
G_S23-Aug-06 5:12
G_S23-Aug-06 5:12 
AnswerRe: Crazy fgets stuff Pin
toxcct23-Aug-06 5:54
toxcct23-Aug-06 5:54 
QuestionDiffernce between Debug mode & Release mode Pin
cybersadhu23-Aug-06 3:45
cybersadhu23-Aug-06 3:45 
AnswerRe: Differnce between Debug mode & Release mode Pin
toxcct23-Aug-06 3:49
toxcct23-Aug-06 3:49 
AnswerRe: Differnce between Debug mode & Release mode [modified] Pin
Chris Losinger23-Aug-06 4:03
professionalChris Losinger23-Aug-06 4:03 
1. there's no debugging info in a release build - no good way to link the EXE back to the source
2. release builds are usually optimized, debug builds are not
3. some functions will work differently in release vs. debug (ex. new/malloc are quite different because the debug versions are designed to help catch memory leaks - the release versions are not)
4. things like ASSERT(x) behave differently because they rely on certain preprocessor flags (ex. _DEBUG) to control what they do
5. some data types may be initialized to 0 in debug build. they won't be, in release builds

etc..


-- modified at 10:03 Wednesday 23rd August, 2006


AnswerRe: Differnce between Debug mode & Release mode Pin
Hamid Taebi24-Aug-06 0:36
professionalHamid Taebi24-Aug-06 0:36 
AnswerRe: Differnce between Debug mode & Release mode Pin
MayankT24-Aug-06 17:43
MayankT24-Aug-06 17:43 
QuestionOdd behavior! Pin
Ed K23-Aug-06 3:24
Ed K23-Aug-06 3:24 
QuestionHow to override the control Pin
reddy harish23-Aug-06 3:19
reddy harish23-Aug-06 3:19 
AnswerRe: How to override the control Pin
_AnsHUMAN_ 23-Aug-06 3:21
_AnsHUMAN_ 23-Aug-06 3:21 
AnswerRe: How to override the control Pin
Wes Aday23-Aug-06 4:11
professionalWes Aday23-Aug-06 4:11 
AnswerRe: How to override the control Pin
Hamid Taebi24-Aug-06 7:55
professionalHamid Taebi24-Aug-06 7:55 
Questionhave trouble with adding bitmap to menus Pin
zhonglin.liang23-Aug-06 2:35
zhonglin.liang23-Aug-06 2:35 
AnswerRe: have trouble with adding bitmap to menus Pin
kakan23-Aug-06 4:09
professionalkakan23-Aug-06 4:09 
Question[Message Deleted] Pin
ramanand_bulusu23-Aug-06 2:16
ramanand_bulusu23-Aug-06 2:16 
AnswerRe: Problem with COLOURREF Pin
toxcct23-Aug-06 2:19
toxcct23-Aug-06 2:19 
AnswerRe: Problem with COLOURREF Pin
Hamid Taebi23-Aug-06 2:33
professionalHamid Taebi23-Aug-06 2:33 
QuestionProblem with COLOURREF [modified] Pin
ramanand_bulusu23-Aug-06 2:12
ramanand_bulusu23-Aug-06 2:12 
AnswerRe: Problem with COLOURREF Pin
Steve S23-Aug-06 2:14
Steve S23-Aug-06 2:14 
GeneralRe: Problem with COLOURREF Pin
ramanand_bulusu23-Aug-06 2:20
ramanand_bulusu23-Aug-06 2:20 
GeneralRe: Problem with COLOURREF Pin
Cedric Moonen23-Aug-06 2:25
Cedric Moonen23-Aug-06 2:25 
QuestionRe: Problem with COLOURREF [modified] Pin
ramanand_bulusu23-Aug-06 2:34
ramanand_bulusu23-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.