diff options
| author | Benjamin Schroeder <[email protected]> | 2021-11-03 16:32:52 -0700 |
|---|---|---|
| committer | Benjamin Schroeder <[email protected]> | 2021-11-03 16:32:52 -0700 |
| commit | 5bcf8d36d9004dde2792a9e35159df253c90c2bb (patch) | |
| tree | 47a075ca7fedd752fd2154389bbad07389dce3e0 /CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp | |
| parent | Add online IDE url (diff) | |
| download | cst116-lab6-bensprogramma-5bcf8d36d9004dde2792a9e35159df253c90c2bb.tar.xz cst116-lab6-bensprogramma-5bcf8d36d9004dde2792a9e35159df253c90c2bb.zip | |
Lab6 Exercises
Diffstat (limited to 'CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp')
| -rw-r--r-- | CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp b/CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp new file mode 100644 index 0000000..71a80ec --- /dev/null +++ b/CST116F2021-Lab6/CST116F2021-Lab6_Schroeder.cpp @@ -0,0 +1,21 @@ +// CST116F2021-Lab6.cpp : This file contains the 'main' function. Program execution begins and ends there. +// +// Lab6Exercises_Schroeder.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include "Lab6_Header.h" + + +int main() +{ + int Mem_Dues[ARRAY_SIZE][2]{}; + string Club_Pres[ARRAY_SIZE][2]{}; + readData(Mem_Dues, Club_Pres); + printData(Mem_Dues, Club_Pres); + +} + + + + +//10.10 Learn by Doing |