- Debug an executable :
Compile with -g option
and run dbx
The following table describe some dbx simple functions
| Command | Action |
| where | print stack |
| stop in func | stop in function |
| stop at 123 | stop at line 123 |
| run | run |
| cont | continue |
| step | step |
| next | next |
| print var | print var |