Question: In C++ Language Please!! Write a program that keeps track of a telephone directory. The program should create a structure, Person, with the following data:
In C++ Language Please!!
Write a program that keeps track of a telephone directory. The program should create a structure, Person, with the following data:
struct Person
{
string firstName;
string lastName;
string phoneNumber;
};
The program should then create a vector of Person structs, called directory. Your program should have functions to:
- Read the vector data from a data file telephoneData.txt into the vector directory.
- Print the details of all Persons in the vector. You may use the following telephoneData.txt file
You may use the following telephoneData.txt file:
Tom Garcia 855-433-2076
Nancy James 202-872-1010
Bill Meyer 120-343-5623
Jack Didier 352-654-1983
Your program should print something like this:
Name Telephone -----------------------------------------------------
Tom Garcia 855-433-2076
Nancy James 202-872-1010
Bill Meyer 120-343-5623
Jack Didier 352-654-198
Please show output on screen when finished.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
