diff options
Diffstat (limited to 'Project1/main.cpp')
| -rw-r--r-- | Project1/main.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Project1/main.cpp b/Project1/main.cpp index dab64a4..5dd3c7c 100644 --- a/Project1/main.cpp +++ b/Project1/main.cpp @@ -13,8 +13,15 @@ using std::endl; int main() { + constexpr size_t SIZE = 101; + int* array = new int[SIZE]; + PrintArray(array, SIZE); + DoubleArraySize(array, SIZE); + PrintArray(array, SIZE); + + delete[] array; return 0; }
\ No newline at end of file |