diff options
| author | TheOtherTonyStark <[email protected]> | 2022-10-23 14:08:16 -0700 |
|---|---|---|
| committer | TheOtherTonyStark <[email protected]> | 2022-10-23 14:08:16 -0700 |
| commit | 4586a90eb2187b0a89e5c5a3e093ab5f156929e1 (patch) | |
| tree | afc91b1cac375a09e5e5ddf15a69e003e8105cdb /CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp | |
| parent | Second Commit (diff) | |
| download | cst116-ch10-debugging-theothertonystark-main.tar.xz cst116-ch10-debugging-theothertonystark-main.zip | |
Diffstat (limited to 'CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp')
| -rw-r--r-- | CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp index 9c00299..0d53f74 100644 --- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp +++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging-Chambers.cpp @@ -121,7 +121,7 @@ void GetAndDisplayWelcomeInfo() } void FunctionOne(int varX[], int varY[]) { - for (int x = 0; x < SIZE; x++) // NOTICE '<' NOT <= + for (int x = 0; x <= 8; x++) // NOTICE '<' NOT <= // Breakpoint 4 // Put breakpoint on the following line varX[x] = x; |