aboutsummaryrefslogtreecommitdiff
path: root/Project1/main.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-18 13:19:50 -0800
committerConnor McDowell <[email protected]>2024-02-18 13:19:50 -0800
commit3803e03c075455ab9907c9a07a62ad078125471c (patch)
treea6920f91c116ef981431a9fd259e3e378a4ac079 /Project1/main.cpp
parentfinished (diff)
downloadin-class-exercise-12-connormcdowell275-main.tar.xz
in-class-exercise-12-connormcdowell275-main.zip
all worksHEADmain
Diffstat (limited to 'Project1/main.cpp')
-rw-r--r--Project1/main.cpp5
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