Programming Tutorials

Comment on Tutorial - assert() example program in C++ By Charles



Comment Added by : Robin Degen

Comment Added at : 2011-08-16 23:47:04

Comment on Tutorial : assert() example program in C++ By Charles
Protip: you could add some inline assembly with the following code:

int 3

This calls interrupt 3, which is a breakpoint. Causing your debugger to break at that spot. How inline assembly works depends on your compiler


View Tutorial