How to display Stack Frames that contain functional variables in Visual Studio (2008), C ++

Is there a way to set up visual studio (2008) to render functional variables on each stack of stacks? I can see that the call stack is just fine with the function parameters, but was wondering if there is a way to see the variables in the function. This would be especially useful for inspecting the contents of the stack and learning how recursive functions work. Many thanks.

+3


source to share


1 answer


Debug + Windows + Localists show all local variables in the active stack frame.



enter image description here

+3


source







All Articles