previous |
start |
next
The Debugger
- You should not "step into" system functions
like setw.
- Some debuggers have a "run to end of function"
or "step out" command to get out of a function.
- Most debuggers can show you a call stack: a listing of all
currently pending function calls.
- My selecting the function in the middle of the
call stack, you can jump to the code line containing that function
call.

previous |
start |
next