Seein program execution step by step?

Where can I see my program execution step by step? I want to see the changes every line of code do, line by line.
A debugger does exactly this. What IDE or system are you using to program?
Thank you I found it.Using a break point and "F10"; True? I use Microsoft Visual C++ 2012 (visual studio ultimate) windows 7. Besides, I want to see the values of variables in each step too. I know going over each variable shows its value i want to see them all in one window to track them. Please tell me how.

Last edited on
When you hit your breakpoint you should show the "Auto" "Locals" and "Watch" windows which will show what you are wanting to see
Last edited on
Thank you a lot.
Topic archived. No new replies allowed.