Page 1 of 1

Contacts Manager 4 Build a program to manage the contacts of users. For each contact, it should include user's name, use

Posted: Sat Nov 27, 2021 10:41 am
by answerhappygod
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 1
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 1 (64.38 KiB) Viewed 46 times
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 2
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 2 (39.39 KiB) Viewed 46 times
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 3
Contacts Manager 4 Build A Program To Manage The Contacts Of Users For Each Contact It Should Include User S Name Use 3 (59.07 KiB) Viewed 46 times
[C Language]
Please finish the answer with the "C Language" problem (NOT
C++).
Show the input & output with the code and take a reference for
me if needed.
PLEASE
Write comments on important lines of code.
Draw the flowchart (and typing some wording to explain the
flowchart and the code) for me to know about what you are
thinking.
This question I need to do the presentation to my teacher.
Please help!
Thank you !
Contacts Manager 4 Build a program to manage the contacts of users. For each contact, it should include user's name, user's phone number, user's address and user's e-mail address. You need to create a special structure for contacts. The contacts manager system is required to implement the following features: 4 • Add a new contact • List all contacts • Search a contact by user's name • Edit a contact • Delete a contact

Sample Input #1: 4 Choose function: Add a new contact name=Amy + phone number=12345678 H address=central park, New York H e-mail=[email protected] Sample Output #1: 4 Amy's contact is successfully added.

Sample Input #2: 4 Choose function: Search a contact by name name=Amy + phone number=12345678 H address=central park, New York 4 e-mail=[email protected] Sample Output #2: 4 Amy's contact is in below: 4 name=Amy + phone number=12345678 H address=central park, New York 4 e-mail=[email protected]