diff options
| author | Arthur Spears <[email protected]> | 2024-01-22 20:23:08 -0800 |
|---|---|---|
| committer | Arthur Spears <[email protected]> | 2024-01-22 20:23:08 -0800 |
| commit | d00fd38a6200723d6178895b587b3f61014fa8fb (patch) | |
| tree | e5647eeef42e826f39be80301b75af1512d97638 /Exercise5/Exercise5/helpers.h | |
| parent | implemented exercise 5 functions (diff) | |
| download | in-class-exercise-5-arthurtspears-main.tar.xz in-class-exercise-5-arthurtspears-main.zip | |
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); |