What I need to do is using classes, design an online address book to keep track of the names, address, phone numbers, and birthdays of family members. The program should be able to handle a maximum of 500 entries.
a. Define the class Address that can store a street address, city, state, and zip code. Use the appropriate methods to print and store in the address. Also, use constructors to automatically initialize the data members.
b. Define the class ExtPerson using the class Person, the class Date, and the class Address. Add a data member to this class to classify the person as a family member, friend, or business associate. Also add a data member to store the phone number. Add (or override) methods to print and store the appropriate information. Use constructors to automatically initialize the data members.
I don't even know where to begin, so any help would be useful. Thank you in advance.