#ifndef CONTACTS_HEADER_H #define CONTACTS_HEADER_H // functions struct contact { int id = 0; int count = 0; char Name[25]{}; char Email[100]{}; char StreetAddress[35]{}; char City[30]{}; char State[3]{}; int Zip = 0; }; //contact newContact[11]; int menu(); char addNew(contact newContact[], size_t MAX, size_t t); void update(contact newContact[], size_t MAX); void printAll(contact newContact[], size_t MAX); char contact_double(contact*& newContact, size_t MAX, size_t t); #endif CONTACTS_HEADER_H