// name: Connor McDowell // date: 2/19/2024 // class: CST116 // reason: homework number 6 #include "Contacts.h" #include using std::cin; using std::cout; using std::endl; constexpr size_t MAX = 3; int main() { int O = 1; constexpr size_t MAX = 3; size_t Cont_list_lenth = 0; contact* newContact = new contact[3]; while (O == 1) { cout << Cont_list_lenth << endl; int c = 0; cout << "1. Enter a contact\n"; cout << "2. Update a contact\n"; cout << "3. print all contacts\n"; cout << "4. Delete a contact\n"; cout << "5. Quit\n"; cout << "\nEnter your choice: " << endl; cin >> c; //c = menu(); if (c == 1) { Cont_list_lenth++; addNew(&newContact[Cont_list_lenth], MAX, Cont_list_lenth); } if (c == 2) { update(&newContact[Cont_list_lenth], MAX); } if (c == 3) { printAll(&newContact[Cont_list_lenth], MAX, Cont_list_lenth); } if (c == 4) { //work in progress } if (c == 5) { delete[] newContact; return 0; } } }