diff options
| author | Connor McDowell <[email protected]> | 2024-02-18 13:19:50 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-18 13:19:50 -0800 |
| commit | 3803e03c075455ab9907c9a07a62ad078125471c (patch) | |
| tree | a6920f91c116ef981431a9fd259e3e378a4ac079 | |
| parent | finished (diff) | |
| download | in-class-exercise-12-connormcdowell275-3803e03c075455ab9907c9a07a62ad078125471c.tar.xz in-class-exercise-12-connormcdowell275-3803e03c075455ab9907c9a07a62ad078125471c.zip | |
| -rw-r--r-- | Project1/main.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Project1/main.cpp b/Project1/main.cpp index 45749ee..a906729 100644 --- a/Project1/main.cpp +++ b/Project1/main.cpp @@ -20,12 +20,13 @@ int main() { array[i] = static_cast<int>(i); } +// all works - - //PrintArray(array, SIZE); + PrintArray(array, SIZE); DoubleArraySize(array, SIZE); + delete[] array; return 0; }
\ No newline at end of file |