Seein program execution step by step?

Jul 29, 2013 at 11:38pm
Where can I see my program execution step by step? I want to see the changes every line of code do, line by line.
Jul 30, 2013 at 12:03am
A debugger does exactly this. What IDE or system are you using to program?
Jul 30, 2013 at 8:36am
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 Jul 30, 2013 at 10:20am
Jul 30, 2013 at 10:23am
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 Jul 30, 2013 at 10:24am
Jul 30, 2013 at 1:03pm
Thank you a lot.
Topic archived. No new replies allowed.