aboutsummaryrefslogtreecommitdiff
path: root/InClassExercise8/NestedLoops.h
blob: cefe00b55ca2422e2e2a92bfd12df96d25629c95 (plain) (blame)
1
2
3
4
5
6
7
8
#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