aboutsummaryrefslogtreecommitdiff
path: root/Homework5/Contacts.h
diff options
context:
space:
mode:
authorAsahel <[email protected]>2024-02-12 18:03:30 -0800
committerAsahel <[email protected]>2024-02-12 18:03:30 -0800
commit36c4160b5a2a4734eda79ac04d216f003c4b8368 (patch)
tree9ee8308267f213daff33456875bddbdcbe7cad10 /Homework5/Contacts.h
parentAdded new files. (diff)
downloadhomework-5-asahellt-main.tar.xz
homework-5-asahellt-main.zip
Saving workHEADmain
Diffstat (limited to 'Homework5/Contacts.h')
-rw-r--r--Homework5/Contacts.h13
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