aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
diff options
context:
space:
mode:
authorMorgan Cyrus <[email protected]>2022-10-30 11:20:14 -0700
committerMorgan Cyrus <[email protected]>2022-10-30 11:20:14 -0700
commit4665f80fb339ecf62c83f6b0a42037560b56f514 (patch)
tree33fedaa9b57a793c37aa84bede726800fdb2ba37 /CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
parentchanged to SIZE (diff)
downloadcst116-ch10-debugging-cyrus-4665f80fb339ecf62c83f6b0a42037560b56f514.tar.xz
cst116-ch10-debugging-cyrus-4665f80fb339ecf62c83f6b0a42037560b56f514.zip
exercise 2 finished
Diffstat (limited to 'CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp')
-rw-r--r--CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
index 70c9288..8039704 100644
--- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
+++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
@@ -56,20 +56,33 @@
* 2) Change any literal containing a 5 to the constant SIZE.
* Notice the usefulness of the constant when changes need
* to be made to your code.
-*
+* done
*
* 3) Set a breakpoint at Breakpoint 4. Now on this breakpoint
* set the necessary condition so the loop breaks when x hits 8.
* (Hint: If you need help setting breakpoints based upon a
* condition refer to Chapter 8).
+* done
+*
* 4) Run to Breakpoint 4.
+* done
+*
* 5) Continue stepping into the remainder of the for loop until the
* flow returns back to main.
+* done
+*
* 6) Make sure your Watch window is visible and notice the contents
* of varY and varZ now that you are back in main.
+* done
+*
* 7) Stop debugging.
+* done
+*
* 8) Disable all breakpoints.
+* done
+*
* 9) Rebuild and execute the program and verify the results.
+*
*/
/* Debugging Exercise 3