// name: Connor McDowell // date: 2/10/2024 // class: CST116 // reason: homework number 5 #include "Contacts.h" #include 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[]); } if (c == 2) { update(&newContact[]); } if (c == 3) { printAll(); } if (c == 4) { exit(); } } }