Question: In C++ Write an address book program with the following specifications: A Main class that handles user input & logic An Entry class with an
In C++ Write an address book program with the following specifications:
- A "Main" class that handles user input & logic
- An "Entry" class with an h file that contains the following:
- name
- phoneNumber
- address
- An "AddressBook" class with an h file that contains the following:
- std::list entries;
- AddEntry(std::string name, std::string phoneNumber, std::string address))
- SearchAddressBook(std::string name)
- PrintAddressBook()
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
