diff options
| author | Morgan Cyrus <[email protected]> | 2022-10-19 19:51:45 -0700 |
|---|---|---|
| committer | Morgan Cyrus <[email protected]> | 2022-10-19 19:51:45 -0700 |
| commit | 254c5281a27c04a017209f44008a5cc762b9b427 (patch) | |
| tree | a91feae3609b9de754f8f46cebed8a29ae8bc0e3 /CST116-Ch9-Debugging/CST116-Ch9-Debugging.cpp | |
| parent | Exercise 3 complete. (diff) | |
| download | cst116-ch9-debugging-radioflyer32-main.tar.xz cst116-ch9-debugging-radioflyer32-main.zip | |
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;
|