diff options
Diffstat (limited to 'CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp')
| -rw-r--r-- | CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp index 95cd60e..7f97898 100644 --- a/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp +++ b/CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp @@ -97,11 +97,19 @@ *
* 1) Run to Breakpoint 2.
* 2) Display your Call Stack window.
+* done
+*
* 3) View the contents of the window and notice that the top
* function on the stack is main.
+* verified
+*
* 4) Step into the PrintResults function.
+*
+*
* 5) Notice that the call stack now shows PrintResults on top of
* the stack.
+* confirmed
+*
********************************************************************/
#include <iostream>
using std::cout;
|