diff options
| -rw-r--r-- | hw6/hw6/contacts.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw6/hw6/contacts.cpp b/hw6/hw6/contacts.cpp index 6b5be1c..05cd8ea 100644 --- a/hw6/hw6/contacts.cpp +++ b/hw6/hw6/contacts.cpp @@ -49,8 +49,8 @@ void Printcontacts(contact(&contacts)[10]) { } void update(contact(&contacts)[10]) { - //cout << "Print contact to update" << endl; - /* + cout << "Print contact to update" << endl; + Printcontacts(contacts); int num = 0; cout << "Enter contact number to update" << endl; @@ -58,9 +58,9 @@ void update(contact(&contacts)[10]) { contacts[num] = InputNewcontact(); - */ - + + } |