diff options
| author | Asahel <[email protected]> | 2024-01-31 11:32:59 -0800 |
|---|---|---|
| committer | Asahel <[email protected]> | 2024-01-31 11:32:59 -0800 |
| commit | dfca2faba4bc411b3265e5175d7f10f6e69049a5 (patch) | |
| tree | 41ce0ca075f0c64571bff809a9564ef02fcc081d /InClassExercise7/Loops.h | |
| parent | add deadline (diff) | |
| download | in-class-exercise-7-asahellt-dfca2faba4bc411b3265e5175d7f10f6e69049a5.tar.xz in-class-exercise-7-asahellt-dfca2faba4bc411b3265e5175d7f10f6e69049a5.zip | |
Finshed
Diffstat (limited to 'InClassExercise7/Loops.h')
| -rw-r--r-- | InClassExercise7/Loops.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/InClassExercise7/Loops.h b/InClassExercise7/Loops.h new file mode 100644 index 0000000..6b4bb43 --- /dev/null +++ b/InClassExercise7/Loops.h @@ -0,0 +1,9 @@ +#ifndef LOOPS_H +#define LOOPS_H + + +void ForLoop(size_t n); +void WhileLoop(size_t n); +void DoWhileLoop(size_t n); + +#endif // !LOOPS_H
\ No newline at end of file |