diff options
| author | Connor McDowell <[email protected]> | 2024-02-18 14:25:42 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-18 14:25:42 -0800 |
| commit | 13fbf63f860ad74bbf0e941a8b7d953a1e163b7c (patch) | |
| tree | 208485ecae6dc1f95408a9786e6ef0081f4420b4 /Project1/Contacts.h | |
| parent | still sorting out errors (diff) | |
| download | homework-5-connormcdowell275-13fbf63f860ad74bbf0e941a8b7d953a1e163b7c.tar.xz homework-5-connormcdowell275-13fbf63f860ad74bbf0e941a8b7d953a1e163b7c.zip | |
after all the testing ive more or less reverted back to what ive done. i have no idea how to complete this at this point without a dynamic array and then it pushes into assignment 6.
Diffstat (limited to 'Project1/Contacts.h')
| -rw-r--r-- | Project1/Contacts.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Project1/Contacts.h b/Project1/Contacts.h index 76b66cf..841233d 100644 --- a/Project1/Contacts.h +++ b/Project1/Contacts.h @@ -16,12 +16,14 @@ struct contact int Zip = 0; }; +//contact newContact[11]; + int menu(); -char addNew(contact* newContact, size_t MAX); +char addNew(contact newContact, size_t MAX); -void update(contact* newContact, size_t MAX); +void update(contact newContact, size_t MAX); void printAll(contact newContact, size_t MAX); |