diff options
Diffstat (limited to 'Project1/main.cpp')
| -rw-r--r-- | Project1/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Project1/main.cpp b/Project1/main.cpp index 6d29960..cb0a77b 100644 --- a/Project1/main.cpp +++ b/Project1/main.cpp @@ -14,7 +14,7 @@ using std::endl; int main() { contact newContact; - + newContact.Set_firstName("Connor"); newContact.Set_lastName("McDowell"); newContact.Set_streetAddress("6051 Lakeview Blvd"); @@ -23,6 +23,8 @@ int main() newContact.Set_zip(97035); newContact.Set_email("[email protected]"); + newContact = newContact; + newContact.print(); return 0; |