From 27cf976f8edd68acb642c26b9f921bdc680c6a8d Mon Sep 17 00:00:00 2001 From: Trenton Stark Date: Sun, 23 Oct 2022 18:25:29 -0700 Subject: Added psuedo code --- CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp') diff --git a/CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp b/CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp index 946a3eb..7ea4aa5 100644 --- a/CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp +++ b/CST116-Ch10-Debugging/CST116-Ch10-Debugging-stark.cpp @@ -140,8 +140,7 @@ void FunctionTwo(int varX[], const int varY[], int varZ[]) for (int x = 0; x < SIZE; x++) // Notice the const SIZE here varZ[x] = varX[x] + varY[x]; } -void PrintFunction(const int varX[20], const int varY[20], - const int varZ[20]) +void PrintFunction(const int varX[20], const int varY[20], const int varZ[20]) { int x; -- cgit v1.2.3