Question: C++ Problem Write a program to keep track of business contacts. Specification Create a BusinessContact class (cpp and .h file) with the following fields: firstName:String
C++ Problem
Write a program to keep track of business contacts.
Specification
Create a BusinessContact class (cpp and .h file) with the following fields:
firstName:String
lastName:String
phoneNumber:String
emailAddress:String
company:String
Store the records in memory in an array or vector.
Store the records on disk in the text file contacts.txt.
Create a menu that allows for the following operations:
Add a Contact
Delete a Contact
View a Contact
Display the Contact List
Automatically read the text file and store the records in an array when the program begins.
Automatically write the records to the file when the program ends.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
