Standard function breakpoints probably help in most of the debugging sessions. But, sometimes, there's simply too much code to check, too many objects or cases. What if you want to filter out code ...
What is the return type of a conditional statement in c++?<BR><BR>e.g. ( 4 < 5 )<BR><BR>sizeof( 4 < 5 ) is saying that it's 1 byte, but is it bool or [unsigned] char or something ...