blob: 71a80ece92a9c75bc88186c61b77c5538ded8f06 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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
|