diff options
| author | Asahel <[email protected]> | 2024-02-01 09:26:05 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-02-01 09:26:05 -0800 |
| commit | c4b1a6807641d01a7a3ea3261ff6b178b71a7e77 (patch) | |
| tree | 20c1dfdbc3586dcd7cde72f44b9381f404cbd0de /InClassExercise8/NestedLoops.h | |
| parent | spacing and files (diff) | |
| download | in-class-exercise-8-asahellt-c4b1a6807641d01a7a3ea3261ff6b178b71a7e77.tar.xz in-class-exercise-8-asahellt-c4b1a6807641d01a7a3ea3261ff6b178b71a7e77.zip | |
Diffstat (limited to 'InClassExercise8/NestedLoops.h')
| -rw-r--r-- | InClassExercise8/NestedLoops.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/InClassExercise8/NestedLoops.h b/InClassExercise8/NestedLoops.h index 8f8ea21..cefe00b 100644 --- a/InClassExercise8/NestedLoops.h +++ b/InClassExercise8/NestedLoops.h @@ -1,2 +1,8 @@ -#ifndef MY_NESTEDLOOPS_FILE_H -#define MY_NESTEDLOOPS_FILE_H +#ifndef NESTEDLOOPS_H +#define NESTEDLOOPS_H + +void NestedForLoop(size_t n, size_t m); +void NestedWhileLoop(size_t n, size_t m); +void NestedDoWhileLoop(size_t n, size_t m); + +#endif NESTEDLOOPS_H |