diff options
Diffstat (limited to 'Homework5/Contacts.h')
| -rw-r--r-- | Homework5/Contacts.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Homework5/Contacts.h b/Homework5/Contacts.h index ba6bfcf..2336a71 100644 --- a/Homework5/Contacts.h +++ b/Homework5/Contacts.h @@ -1,6 +1,19 @@ #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 |