diff options
| author | Yana Blashchishina <[email protected]> | 2024-02-15 20:58:06 -0800 |
|---|---|---|
| committer | Yana Blashchishina <[email protected]> | 2024-02-15 20:58:06 -0800 |
| commit | 2630a20d533efaa8f4946191b04fde52965dee59 (patch) | |
| tree | b1001ee411629951b49c05cd932b193cf62c6424 | |
| parent | init (diff) | |
| download | archived-in-class-exercise-12-yanablash-2630a20d533efaa8f4946191b04fde52965dee59.tar.xz archived-in-class-exercise-12-yanablash-2630a20d533efaa8f4946191b04fde52965dee59.zip | |
array.h & array.cpp
| -rw-r--r-- | InClassExercise12/InClassExercise12/c_array.cpp | 17 | ||||
| -rw-r--r-- | InClassExercise12/InClassExercise12/c_array.h | 2 |
2 files changed, 19 insertions, 0 deletions
diff --git a/InClassExercise12/InClassExercise12/c_array.cpp b/InClassExercise12/InClassExercise12/c_array.cpp index e69de29..e068dd5 100644 --- a/InClassExercise12/InClassExercise12/c_array.cpp +++ b/InClassExercise12/InClassExercise12/c_array.cpp @@ -0,0 +1,17 @@ +#include <iostream> +#include "c_array.h" + + + +void DoubleArraySize(int*& array, size_t& size) +{ + + +} + + +void PrintArray(int* array, size_t size) +{ + + +}
\ No newline at end of file diff --git a/InClassExercise12/InClassExercise12/c_array.h b/InClassExercise12/InClassExercise12/c_array.h index 803de7f..5e52b04 100644 --- a/InClassExercise12/InClassExercise12/c_array.h +++ b/InClassExercise12/InClassExercise12/c_array.h @@ -2,7 +2,9 @@ #define C_ARRAY +void DoubleArraySize(int*& array, size_t& size); +void PrintArray(int* array, size_t size); |