Click here to Skip to main content
15,890,282 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerIs your problem Solved. Pin
chandu0045-Sep-07 1:58
chandu0045-Sep-07 1:58 
QuestionHow to add virtual ip in the windows xp to using c++? songjacky 6hrs 12mins ago Pin
songjacky5-Sep-07 0:53
songjacky5-Sep-07 0:53 
AnswerRe: How to add virtual ip in the windows xp to using c++? songjacky 6hrs 12mins ago Pin
Waldermort5-Sep-07 1:06
Waldermort5-Sep-07 1:06 
AnswerRe: How to add virtual ip in the windows xp to using c++? songjacky 6hrs 12mins ago Pin
Hamid_RT5-Sep-07 1:10
Hamid_RT5-Sep-07 1:10 
QuestionGlobal vs local variables Pin
rajeevktripathi5-Sep-07 0:50
rajeevktripathi5-Sep-07 0:50 
AnswerRe: Global vs local variables Pin
Waldermort5-Sep-07 0:52
Waldermort5-Sep-07 0:52 
QuestionRe: Global vs local variables Pin
rajeevktripathi5-Sep-07 0:58
rajeevktripathi5-Sep-07 0:58 
AnswerRe: Global vs local variables Pin
Waldermort5-Sep-07 1:10
Waldermort5-Sep-07 1:10 
In a debug build, variables are initialized, but you will find that within a release build, they are not. This is one of the main reasons why people complain that their release build doesn't work. Take the following example:

bool bIsEqual;<br />
<br />
if ( ... )<br />
    bIsEqual = true;<br />
<br />
if ( bIsEqual ) // Is this true or false? in debug it was initialized to false<br />
    ....

QuestionRe: Global vs local variables Pin
rajeevktripathi5-Sep-07 1:38
rajeevktripathi5-Sep-07 1:38 
AnswerRe: Global vs local variables Pin
jhwurmbach5-Sep-07 2:22
jhwurmbach5-Sep-07 2:22 
AnswerRe: Global vs local variables Pin
Naveen5-Sep-07 2:13
Naveen5-Sep-07 2:13 
AnswerRe: Global vs local variables Pin
David Crow5-Sep-07 4:53
David Crow5-Sep-07 4:53 
QuestionReader Writer lock Pin
Waldermort5-Sep-07 0:50
Waldermort5-Sep-07 0:50 
AnswerRe: Reader Writer lock Pin
chandu0045-Sep-07 1:42
chandu0045-Sep-07 1:42 
AnswerRe: Reader Writer lock Pin
Matthew Faithfull5-Sep-07 1:52
Matthew Faithfull5-Sep-07 1:52 
GeneralRe: Reader Writer lock Pin
Waldermort5-Sep-07 2:44
Waldermort5-Sep-07 2:44 
GeneralRe: Reader Writer lock Pin
El Corazon5-Sep-07 5:02
El Corazon5-Sep-07 5:02 
GeneralRe: Reader Writer lock Pin
El Corazon5-Sep-07 5:34
El Corazon5-Sep-07 5:34 
GeneralRe: Reader Writer lock Pin
Waldermort5-Sep-07 6:17
Waldermort5-Sep-07 6:17 
GeneralRe: Reader Writer lock Pin
El Corazon5-Sep-07 7:38
El Corazon5-Sep-07 7:38 
GeneralRe: Reader Writer lock Pin
Matthew Faithfull5-Sep-07 5:49
Matthew Faithfull5-Sep-07 5:49 
GeneralRe: Reader Writer lock Pin
Waldermort5-Sep-07 6:15
Waldermort5-Sep-07 6:15 
AnswerRe: Reader Writer lock Pin
Matthew Faithfull5-Sep-07 6:28
Matthew Faithfull5-Sep-07 6:28 
GeneralRe: Reader Writer lock Pin
El Corazon5-Sep-07 7:42
El Corazon5-Sep-07 7:42 
GeneralRe: Reader Writer lock Pin
Matthew Faithfull5-Sep-07 9:30
Matthew Faithfull5-Sep-07 9:30 

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.