aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch8-Debugging
diff options
context:
space:
mode:
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
*