Click here to Skip to main content
15,892,253 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalworking in hex Pin
hassani13-Dec-02 17:04
hassani13-Dec-02 17:04 
GeneralRe: working in hex Pin
Michael Dunn13-Dec-02 17:13
sitebuilderMichael Dunn13-Dec-02 17:13 
GeneralCode Navigation Pin
Nikolay Avrionov13-Dec-02 16:52
Nikolay Avrionov13-Dec-02 16:52 
GeneralRe: Code Navigation Pin
Taka Muraoka13-Dec-02 18:28
Taka Muraoka13-Dec-02 18:28 
QuestionWhat does this mean? Pin
SmilingHeart13-Dec-02 15:50
SmilingHeart13-Dec-02 15:50 
AnswerRe: What does this mean? Pin
Taka Muraoka13-Dec-02 16:25
Taka Muraoka13-Dec-02 16:25 
GeneralRe: What does this mean? Pin
SmilingHeart13-Dec-02 21:56
SmilingHeart13-Dec-02 21:56 
GeneralRe: What does this mean? Pin
Taka Muraoka13-Dec-02 22:03
Taka Muraoka13-Dec-02 22:03 
You don't need to understand the assembly.

INT 3 is how Visual C++ stops the program if an assertion failure happens. If you don't know what that means, look up what the assert() macro does.

What has happened is that some code somewhere has noticed that something has gone wrong and stopped the program for you, where it happened, so that you can do something about it. For example, if you call strlen() like this:

char* p = NULL ;<br />
size_t n = strlen(p) ; 


strlen() might be smart enough to detect that you passed in a NULL pointer and assert.

So bring up the call stack as I suggested and you can see exactly where your program was when it stopped. And pressing F11 a few times *might* get out of the assembly code and back to some C source code.



he he he. I like it in the kitchen! - Marc Clifton (on taking the heat when being flamed)

Awasu v0.4a[^]: A free RSS reader with support for Code Project.

GeneralFile Management :: Win32 Pin
valikac13-Dec-02 12:12
valikac13-Dec-02 12:12 
GeneralRe: File Management :: Win32 Pin
Christian Graus13-Dec-02 12:52
protectorChristian Graus13-Dec-02 12:52 
GeneralRe: File Management :: Win32 Pin
valikac13-Dec-02 13:14
valikac13-Dec-02 13:14 
GeneralRe: File Management :: Win32 Pin
Michael Dunn13-Dec-02 15:29
sitebuilderMichael Dunn13-Dec-02 15:29 
GeneralRe: File Management :: Win32 Pin
valikac13-Dec-02 16:06
valikac13-Dec-02 16:06 
QuestionHow to get pointer of a view in Splitter in document? Pin
13-Dec-02 9:52
suss13-Dec-02 9:52 
GeneralMy program will not execute. Pin
Anonymous13-Dec-02 9:41
Anonymous13-Dec-02 9:41 
GeneralRe: My program will not execute. Pin
will138313-Dec-02 9:45
will138313-Dec-02 9:45 
GeneralRe: My program will not execute. Pin
Christian Graus13-Dec-02 9:49
protectorChristian Graus13-Dec-02 9:49 
GeneralRe: My program will not execute. Pin
Gary Kirkham13-Dec-02 10:36
Gary Kirkham13-Dec-02 10:36 
GeneralRe: My program will not execute. Pin
Michael Dunn13-Dec-02 15:32
sitebuilderMichael Dunn13-Dec-02 15:32 
QuestionHow to display a string vertically? Pin
Vincent Ye13-Dec-02 8:31
Vincent Ye13-Dec-02 8:31 
AnswerRe: How to display a string vertically? Pin
Gary Kirkham13-Dec-02 10:46
Gary Kirkham13-Dec-02 10:46 
AnswerRe: How to display a string vertically? Pin
Alvaro Mendez13-Dec-02 11:02
Alvaro Mendez13-Dec-02 11:02 
GeneralRe: How to display a string vertically? Pin
Vincent Ye13-Dec-02 17:44
Vincent Ye13-Dec-02 17:44 
Generaldeleting a node Pin
Anonymous13-Dec-02 8:07
Anonymous13-Dec-02 8:07 
GeneralRe: deleting a node Pin
Nick Parker13-Dec-02 8:33
protectorNick Parker13-Dec-02 8:33 

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.