From 1147ba66743e8fa60247398c5477fecdf241fccd Mon Sep 17 00:00:00 2001 From: austinlujan Date: Wed, 20 Mar 2024 20:10:57 -0700 Subject: exercise 6 functions implemented and tested --- Project1/helpers.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Project1/helpers.h (limited to 'Project1/helpers.h') diff --git a/Project1/helpers.h b/Project1/helpers.h new file mode 100644 index 0000000..69ea085 --- /dev/null +++ b/Project1/helpers.h @@ -0,0 +1,14 @@ +#ifndef MY_HEADER_FILE_H +#define MY_HEADER_FILE_H + +int math_func(); + +int math_func(int square); + +int math_func(int a, int b); + +int math_func(int A, int B, int C, int x = 2); + + + +#endif // !MY_HEADER_FILE_H -- cgit v1.2.3