#ifndef CONTACT_H #define CONTACT_H struct Contact { char Name[25] = {}; char Email[100] = {}; char StreetAddress[35] = {}; char City[30] = {}; char State[2] = {}; int Zip = 0; }; Contact InputNewContact(); void PrintContacts(Contact(&contacts)[10]); #endif // !CONTACT_H