diff options
| author | Connor McDowell <[email protected]> | 2024-01-30 11:55:11 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-01-30 11:55:11 -0800 |
| commit | c96f06763bc5817734640f33f4fa0c92bad79132 (patch) | |
| tree | 91f7fd354ae080ed85b973cea403981a2068e375 /Project1/header.h | |
| parent | .cpp and .h formatted (diff) | |
| download | homework-3-connormcdowell275-c96f06763bc5817734640f33f4fa0c92bad79132.tar.xz homework-3-connormcdowell275-c96f06763bc5817734640f33f4fa0c92bad79132.zip | |
funcitons written, tested, built, and debugged! assignment complete!
Diffstat (limited to 'Project1/header.h')
| -rw-r--r-- | Project1/header.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Project1/header.h b/Project1/header.h index 2676c51..2d10f39 100644 --- a/Project1/header.h +++ b/Project1/header.h @@ -1,7 +1,11 @@ #ifndef MY_HEADER_FILE_H #define MY_HEADER_FILE_H +int factorial(int f); +int fibonacci(int n); + +int powerfunc(int m, int p); |