From 95688d15b068e98fdfea219f39097ece87d41ae5 Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Tue, 11 Oct 2022 19:59:09 -0700 Subject: Made more fixes --- CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 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..f3a6c6f 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -62,12 +62,12 @@ int main() // Breakpoint 1 // Put a breakpoint on the following line - while (i < 0); + while (i < 0) 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