diff options
| -rw-r--r-- | CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp index f10e39d..bafdf58 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -63,7 +63,7 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
while (i < 10)
- cout << i << endl;
+ cout << i++ << endl;
// Breakpoint 2
// Put a breakpoint on the following line
|