Click here to Skip to main content
15,921,279 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: why the dialog would closed? Pin
kcynic26-Jul-07 4:17
kcynic26-Jul-07 4:17 
AnswerRe: why the dialog would closed? Pin
Hamid_RT31-Jul-07 20:56
Hamid_RT31-Jul-07 20:56 
Questionmailslot in mfc() Pin
mirraa26-Jul-07 2:41
mirraa26-Jul-07 2:41 
QuestionRe: mailslot in mfc() Pin
David Crow26-Jul-07 3:14
David Crow26-Jul-07 3:14 
Questionfont problem in scintillawnd Pin
mirraa26-Jul-07 1:59
mirraa26-Jul-07 1:59 
AnswerRe: font problem in scintillawnd Pin
Roger Broomfield26-Jul-07 2:45
Roger Broomfield26-Jul-07 2:45 
GeneralRe: font problem in scintillawnd Pin
David Crow26-Jul-07 3:15
David Crow26-Jul-07 3:15 
QuestionIn place string reversal throws exception ... Pin
dharani26-Jul-07 1:41
dharani26-Jul-07 1:41 
Hi all
I am running a piece of code and it asserts . Any ideas why so ? . I use VC++ 6.0 Dialog based application


char* one ="hello";
StrRev(one);

.....
.....

void StrRev(char *s)
{
for(char *end = s + (strlen(s) - 1); (end > s) ; --end, ++s)
{
char tmpChar = (*s);
(*s) = (*end); <---- it throws exception here ....why ?
(*end) = tmpChar;
}

}

redindian

AnswerRe: In place string reversal throws exception ... Pin
Nemanja Trifunovic26-Jul-07 1:51
Nemanja Trifunovic26-Jul-07 1:51 
AnswerRe: In place string reversal throws exception ... Pin
#realJSOP26-Jul-07 2:11
professional#realJSOP26-Jul-07 2:11 
AnswerRe: In place string reversal throws exception ... Pin
Roger Broomfield26-Jul-07 2:58
Roger Broomfield26-Jul-07 2:58 
GeneralRe: In place string reversal throws exception ... Pin
#realJSOP26-Jul-07 7:32
professional#realJSOP26-Jul-07 7:32 
AnswerRe: In place string reversal throws exception ... Pin
David Crow26-Jul-07 3:18
David Crow26-Jul-07 3:18 
QuestionWhere can I get msdn? Pin
Chen-XuNuo26-Jul-07 1:26
Chen-XuNuo26-Jul-07 1:26 
AnswerRe: Where can I get msdn? Pin
#realJSOP26-Jul-07 2:12
professional#realJSOP26-Jul-07 2:12 
GeneralRe: Where can I get msdn? Pin
Roger Broomfield26-Jul-07 2:34
Roger Broomfield26-Jul-07 2:34 
GeneralRe: Where can I get msdn? Pin
Chen-XuNuo26-Jul-07 3:09
Chen-XuNuo26-Jul-07 3:09 
AnswerRe: Where can I get msdn? Pin
Ravi Sant20-Jun-11 2:48
Ravi Sant20-Jun-11 2:48 
QuestionBoost thread and C++ Pin
Mwambe26-Jul-07 1:14
Mwambe26-Jul-07 1:14 
AnswerRe: Boost thread and C++ Pin
Nemanja Trifunovic26-Jul-07 1:38
Nemanja Trifunovic26-Jul-07 1:38 
Questionsource of an application that nobody can kill or terminate it . Pin
Developer61126-Jul-07 1:07
Developer61126-Jul-07 1:07 
AnswerRe: source of an application that nobody can kill or terminate it . Pin
#realJSOP26-Jul-07 2:13
professional#realJSOP26-Jul-07 2:13 
GeneralRe: source of an application that nobody can kill or terminate it . Pin
Roger Broomfield26-Jul-07 2:39
Roger Broomfield26-Jul-07 2:39 
AnswerRe: source of an application that nobody can kill or terminate it . Pin
jhwurmbach26-Jul-07 3:01
jhwurmbach26-Jul-07 3:01 
GeneralRe: source of an application that nobody can kill or terminate it . Pin
Mark Salsbery26-Jul-07 5:26
Mark Salsbery26-Jul-07 5:26 

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.