diff options
| author | tafaar <[email protected]> | 2022-10-11 18:53:56 -0700 |
|---|---|---|
| committer | tafaar <[email protected]> | 2022-10-11 18:53:56 -0700 |
| commit | 03387bd735676e1d2702877e352b3aeb75de71fd (patch) | |
| tree | 87384a7a89a7fbd9256f14257c06843db3443b0e | |
| parent | answered 4 (diff) | |
| download | cst116-chapter8-debugging-hill-03387bd735676e1d2702877e352b3aeb75de71fd.tar.xz cst116-chapter8-debugging-hill-03387bd735676e1d2702877e352b3aeb75de71fd.zip | |
did 5
| -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 2de9c46..2aa65ca 100644 --- a/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp +++ b/CST116-Ch8-Debugging/CST116-Ch8-Debugging.cpp @@ -72,7 +72,7 @@ int main() // Breakpoint 1
// Put a breakpoint on the following line
- while (i < 1) {
+ while (i < 10) {
cout << i << endl;
i++;
}
|