diff options
Diffstat (limited to 'Project1')
| -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 |