Does anyone know a C++ debugger that's explicit? Like the one in Borland C++ 3.1 if you are familiar with it. I need one that can evaluate expressions so i know step by step where the fault is.
I do not use a debugger that much even when I find it useful. I always step through my code by reading it. That habit made me a better programmer cause I can remember what my fault was on previous programs.
Either way, the only debugger that I used was Visual Studio. I only used its debugger very seldom and I am not sure if there are any better ones. I believe Visual Studio Express Edition, the free ones, comes with a debugger as well so you might want to try that.
Oh, I just remembered as well that I used Sun's Netbeans to write C/C++ codes before and the IDE also came in with a debugger. Also free, but the very downside is it requires the JVM to run. So it will eat up some resource.