diff options
Diffstat (limited to 'Exercise5/Exercise5/helpers.h')
| -rw-r--r-- | Exercise5/Exercise5/helpers.h | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/Exercise5/Exercise5/helpers.h b/Exercise5/Exercise5/helpers.h index 0fcb072..8fc59a6 100644 --- a/Exercise5/Exercise5/helpers.h +++ b/Exercise5/Exercise5/helpers.h @@ -3,22 +3,35 @@ #define MY_HEADER_FILE_H // Content of the header file -int returnInt(); +//int returnInt(); +// +//int sum(int a, int b); +// +//int sum(int a, int b, int c, int d); +// +//int sum(float a); +// +//float percentage(int a, int b); +// +//float FtoC(int fah); +// +//float CtoF(int cel); -int sum(int a, int b); - -float percentage(int a, int b); - -float FtoC(int fah); - -float CtoF(int cel); +//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); +//long factorial_worker(int a); long factorial(int a); |