
I'm relearning C++ using Dev-C++. I've been pretty much exclusively using Eclipse and Java for the past 6 months or so, so I guess I've been a little spoiled, but one thing I love about Eclipse is that when I encounter a runtime error, I get a nice stack trace that allows me to track down the error. Unfortunately Dev-C++ does not provide that. There is a stepper function, however. I'm worried that when I start writing larger programs it might be more difficult to track down a tiny, not-so-obvious bug with the stepper, though, so I was wondering if there was any way in C++ to get a stack trace when an unknown type of exception is thrown at runtime. Thanks
