blob: 8e590a0968b1b0ff00b0285d0e5c26488e54e220 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#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();
Contact ContactUpdate();
void PrintContacts(Contact(&contacts)[10]);
void ContactUpdate(Contact(&contacts)[10]);
void addContact(Contact(&contacts)[3]);
#endif // !CONTACT_H
|