Moving Around the Call Stack | Debugging Window |
The call stack lists all functions called but not returned. The functions are listed in the order in which they were called. The initial function (main() for C and C++ programs) is at the top of the stack. The stopped in function, the function executing when the program stopped, is at the bottom of the stack.