aboutsummaryrefslogtreecommitdiff
path: root/Homework5/Contacts.h
blob: 2336a71d7ef8faaa748ae94dcbfcb0625cd0f09f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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