diff options
| author | Connor McDowell <[email protected]> | 2024-02-15 16:52:41 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-15 16:52:41 -0800 |
| commit | ac9e104567f6989d9959d9cf16019adb926a59c2 (patch) | |
| tree | 75ed3932ea80352c5fe437580bf698b42aa07c5e /Project1/c_array.h | |
| parent | links created, usings created (diff) | |
| download | in-class-exercise-12-connormcdowell275-ac9e104567f6989d9959d9cf16019adb926a59c2.tar.xz in-class-exercise-12-connormcdowell275-ac9e104567f6989d9959d9cf16019adb926a59c2.zip | |
print and double created
Diffstat (limited to 'Project1/c_array.h')
| -rw-r--r-- | Project1/c_array.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Project1/c_array.h b/Project1/c_array.h index 95a13d4..e4cca9f 100644 --- a/Project1/c_array.h +++ b/Project1/c_array.h @@ -1,7 +1,9 @@ #ifndef C_ARRAY_HEADER #define C_ARRAY_HEADER +void DoubleArraySize(int*& array, size_t size); +void PrintArray(int* array, size_t size); #endif C_ARRAY_HEADER |