diff options
| author | Morgan Cyrus <[email protected]> | 2022-10-12 21:04:41 -0700 |
|---|---|---|
| committer | Morgan Cyrus <[email protected]> | 2022-10-12 21:04:41 -0700 |
| commit | 51db3bc254be3e7fba22aba27ccf85aaa35c6534 (patch) | |
| tree | 7d4a75894ab227dde9877aef29e86994716218e6 /CST116-Ch8-Debugging | |
| parent | Starting and added name (diff) | |
| download | cst116-chapter8-cyrus-51db3bc254be3e7fba22aba27ccf85aaa35c6534.tar.xz cst116-chapter8-cyrus-51db3bc254be3e7fba22aba27ccf85aaa35c6534.zip | |
breakpoints entered.
Diffstat (limited to 'CST116-Ch8-Debugging')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..b5b3305 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -1,5 +1,9 @@ /********************************************************************
* File: CST116-Ch8-Debugging.cpp
+*
+* Morgan Cyrus
+* CST116
+* CH8 Debugging
*
* General Instructions: Complete each step before proceeding to the
* next.
@@ -7,6 +11,8 @@ * Debugging Exercise 1
*
* 1) Insert a breakpoint on the lines indicated in the code.
+* done
+*
* 2) Run to Breakpoint 1.
* 3) Place a watch on i.
* 4) Execute the while statement by doing a "Step Into".
@@ -19,6 +25,9 @@ * worked.
* 10) Stop debugging.
*
+*/
+
+/*
* Debugging Exercise 2
*
* 1) Run to Breakpoint 1.
@@ -30,7 +39,9 @@ * 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
* worked.
* 7) Stop debugging.
-*
+*/
+
+/*
* Debugging Exercise 3
*
* 1) Run the program without debugging.
@@ -40,7 +51,9 @@ * statement.
* 5) Run the program to Breakpoint 2 and verify that the output
* displayed on the screen is 0 � 9.
-*
+*/
+
+/*
* Debugging Exercise 4
*
* 1) Run to Breakpoint 2.
|