diff options
Diffstat (limited to 'In-Class 7/In-Class 7/Loops.h')
| -rw-r--r-- | In-Class 7/In-Class 7/Loops.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/In-Class 7/In-Class 7/Loops.h b/In-Class 7/In-Class 7/Loops.h new file mode 100644 index 0000000..bf02d65 --- /dev/null +++ b/In-Class 7/In-Class 7/Loops.h @@ -0,0 +1,13 @@ +#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 |