aboutsummaryrefslogtreecommitdiff
path: root/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
diff options
context:
space:
mode:
authorprestonderek <[email protected]>2022-10-21 10:15:47 -0700
committerprestonderek <[email protected]>2022-10-21 10:15:47 -0700
commit1767c1adf03047c2a80fd103c912c46c36c3fc92 (patch)
treef96b034006f8d9915314a1c40c8188b516179ec2 /CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
parentcommit for initial save and end of exercise 1 (diff)
downloadcst116-ch10-debugging-prestonderek-1767c1adf03047c2a80fd103c912c46c36c3fc92.tar.xz
cst116-ch10-debugging-prestonderek-1767c1adf03047c2a80fd103c912c46c36c3fc92.zip
changed constant SIZE to 10 from 5
Diffstat (limited to 'CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp')
-rw-r--r--CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
index 1e3d58b..928ddb2 100644
--- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
+++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging.cpp
@@ -84,7 +84,7 @@ void FunctionTwo(const int varX[], const int varY[], int varZ[]);
void PrintFunction(const int varX[], const int varY[],
const int varZ[]);
-const int SIZE = 5;
+const int SIZE = 10;
int main()
{