1 2 3 4 5 6 7 8 9 10 11 12 13 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; };