diff options
| author | abd00l4h <[email protected]> | 2022-10-12 20:59:51 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-12 20:59:51 -0700 |
| commit | 6ca2fa4fa7b62b7bff573f3db66ffddc188bbc76 (patch) | |
| tree | b808096a8bbe89c3f2c922cfd125e22ecd281e71 /CST116-Ch8-Debugging | |
| parent | Add files via upload (diff) | |
| download | cst116-chapter8-debugging-abd00l4h-main.tar.xz cst116-chapter8-debugging-abd00l4h-main.zip | |
Diffstat (limited to 'CST116-Ch8-Debugging')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Havaldar.cpp (renamed from CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Havaldar.cpp index 2c9e095..1085770 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Havaldar.cpp @@ -16,7 +16,7 @@ * statement?
* The while statement doesn't have anything within it to run and the statement is intially false so it doesn't even run in the first place
* 8) Fix this problem by removing the ; after the while statement.
-* 9) Stop debugging and repeat Steps 2 � 5 to verify the correction
+* 9) Stop debugging and repeat Steps 2 – 5 to verify the correction
* worked.
* 10) Stop debugging.
*
@@ -30,7 +30,7 @@ * condition evaluate to true?
* No
* 5) Change the "< 0" to a "< 10".
-* 6) Stop debugging and repeat Steps 1 � 4 to verify the correction
+* 6) Stop debugging and repeat Steps 1 – 4 to verify the correction
* worked.
* 7) Stop debugging.
*
@@ -42,7 +42,7 @@ * 4) Fix the problem by adding a "++" after the i in the cout
* statement.
* 5) Run the program to Breakpoint 2 and verify that the output
-* displayed on the screen is 0 � 9.
+* displayed on the screen is 0 – 9.
*
* Debugging Exercise 4
*
|