diff options
Diffstat (limited to 'Project1/helper.h')
| -rw-r--r-- | Project1/helper.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Project1/helper.h b/Project1/helper.h new file mode 100644 index 0000000..0133560 --- /dev/null +++ b/Project1/helper.h @@ -0,0 +1,10 @@ +#ifndef HELPER +#define HELPER + +constexpr int SIZE = 12000; + +void Print(int(&cArray)[SIZE]); + +void Print_std(int stdArray[]); + +#endif HELPER |