From c89414e3c6d40ec4cb13fe76d7601cf91d626d78 Mon Sep 17 00:00:00 2001 From: Anibal LopezBonilla Date: Thu, 6 Oct 2022 16:30:35 -0700 Subject: Performed debugging exercise 1 --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp') 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 @@ -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; -- cgit v1.2.3