Reference no: EM132430969
Problem 1: Address Book-Card Generator Program Using a Linked List
DESCRIPTION
This program will have names and addresses saved in a linked list. In addition, a birthday and anniversary date will be saved with each record.
When the program is run, it will search for a birthday or an anniversary using the current date to compare with the saved data. It will then generate the appropriate card.
Because this will be an interactive system, your program should begin by displaying a menu. Items on the menu should include:
- Enter a new name into the address book
- Delete a name from the address book
- Change a name or date in the address book
- Generate birthday cards
- Generate anniversary cards
- Exit the card program
Each of these sections will call individual functions to perform their appropriate task.
This address book is to be sorted in alphabetical order. Be aware of this when you are entering, deleting, or changing the name, and plan your code accordingly.
display the card created on the screen (you do not need to print it). You may design the layout of the card as you wish. For example, it could be:
Dear <name_saved>,
Hope your birthday is really wonderful and this coming year is the best yet!
Love,
Joanne
DELIVERABLES
- Your C++ source code with any header files
- Your executable code
- A document detailing how you will test your program that also includes screenshots of a few sample runs of your program
- An overview document, giving the name of each file submitted and its purpose, as well as a few paragraphs on your experiences coding the linked lists. If there are any problems with your program or it does not run or run as it is supposed to, please indicate that as well in this document.