aboutsummaryrefslogtreecommitdiff
path: root/Homework5/program.cpp
diff options
context:
space:
mode:
authorAsahel <[email protected]>2024-02-12 09:30:08 -0800
committerAsahel <[email protected]>2024-02-12 09:30:08 -0800
commit349e769c2dcebf1865f677e6aeadffd6d56c049e (patch)
tree6766294963183bf0434a10fb0dea8757a8c5d5e7 /Homework5/program.cpp
parentadd deadline (diff)
downloadhomework-5-asahellt-349e769c2dcebf1865f677e6aeadffd6d56c049e.tar.xz
homework-5-asahellt-349e769c2dcebf1865f677e6aeadffd6d56c049e.zip
Added new files.
Diffstat (limited to 'Homework5/program.cpp')
-rw-r--r--Homework5/program.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/Homework5/program.cpp b/Homework5/program.cpp
new file mode 100644
index 0000000..f026a4b
--- /dev/null
+++ b/Homework5/program.cpp
@@ -0,0 +1,14 @@
+// Name: Asahel Lopez
+// Date: 2/11/24
+// Class: CST 116
+// Assignment: Homework 5
+
+struct Contact
+{
+ char Namr[25] = {};
+ char Email[100] = {};
+ char StreetAddress[35] = {};
+ char City[30] = {};
+ char State[2] = {};
+ int Zip = 0;
+}; \ No newline at end of file