diff options
Diffstat (limited to 'in-class-extercise-5/in-class-extercise-5/helpers.h')
| -rw-r--r-- | in-class-extercise-5/in-class-extercise-5/helpers.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/in-class-extercise-5/in-class-extercise-5/helpers.h b/in-class-extercise-5/in-class-extercise-5/helpers.h new file mode 100644 index 0000000..40a9694 --- /dev/null +++ b/in-class-extercise-5/in-class-extercise-5/helpers.h @@ -0,0 +1,17 @@ +#ifndef MY_HEADER_FILE_H +#define MY_HEADER_FILE_H + +int returnInt(); + +int sum(int a, int b); + +float percentage(int a, int b); + +float FtoC(int fah); + +float CtoF(int cel); + +long factoral(int a); + + +#endif |