blob: 88ad645f4e5f5fc6ad242568efd8482bc5225346 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// name: Connor McDowell
// date: 2/10/2024
// class: CST116
// reason: homework number 5
#include "Contacts.h"
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
//
//
//int main()
//{
//
//
//
//
//
// return 0;
//}
int main()
{
int O = 1;
contact newContact[10];
while (O == 1)
{
int c = 0;
c = menu();
if (c = 1)
{
addNew(&newContact[10]);
}
}
}
|