// Name: Connor McDowell // date: 2/19/24 // class: CST116 // reason: learning classes, in class exercise 13 #include #include "contact.h" using std::cin; using std::cout; using std::endl; int main() { contact newContact; newContact.Set_firstName("Connor"); newContact.Set_lastName("McDowell"); newContact.Set_streetAddress("6051 Lakeview Blvd"); newContact.Set_city("Lake Oswego"); newContact.Set_state("Oregon"); newContact.Set_zip(97035); newContact.Set_email("connormcdowell275@gmail.com"); contact anotherContact; anotherContact.Set_firstName("Soup"); anotherContact.Set_lastName("Mchonkey"); anotherContact.Set_streetAddress("your mom road"); anotherContact.Set_city("Nunya"); anotherContact.Set_state("south carolina"); anotherContact.Set_zip(696969); anotherContact.Set_email("SoupWohonkey@soup.soup"); newContact.print(); anotherContact = newContact; contact copyContact(anotherContact); copyContact.print(); return 0; }