diff options
| author | Anibal LopezBonilla <[email protected]> | 2022-10-06 16:30:35 -0700 |
|---|---|---|
| committer | Anibal LopezBonilla <[email protected]> | 2022-10-06 16:30:35 -0700 |
| commit | c89414e3c6d40ec4cb13fe76d7601cf91d626d78 (patch) | |
| tree | 262912b23a0d399252109a7cecb6dc53d44c9e04 /CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | |
| parent | Initial commit (diff) | |
| download | cst116-chapter8-debugging-lopez-bonilla-c89414e3c6d40ec4cb13fe76d7601cf91d626d78.tar.xz cst116-chapter8-debugging-lopez-bonilla-c89414e3c6d40ec4cb13fe76d7601cf91d626d78.zip | |
Performed debugging exercise 1
Diffstat (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp')
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index 53e4a61..fe1e204 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -24,6 +24,9 @@ * 1) Run to Breakpoint 1.
* 2) Step into the while loop.
* 3) Why did the cout not execute?
+*
+* ANS: The while statement was not applicable since i was only equal to zero once.
+*
* 4) Check the value of i, now check the condition, does the
* condition evaluate to true?
* 5) Change the "< 0" to a "< 10".
@@ -48,7 +51,13 @@ * 3) Verify that the contents of count is garbage.
* 4) Step into the loop.
* 5) What is the value stored in count now?
+*
+* ANS: 10
+*
* 6) Where was 10 assigned to count?
+*
+* ANS: Right after going through the for loop
+*
* 7) Fix the problem and re-run to verify.
********************************************************************/
#include <iostream>
@@ -62,12 +71,12 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
- while (i < 0);
- cout << i << endl;
+ while (i < 10)
+ cout << i++ << endl;
// Breakpoint 2
// Put a breakpoint on the following line
- for (count = 0; count < 10; count++);
+ for (count = 0; count < 10; count++)
cout << count << endl;
return 0;
|