Write a menu driven program that will create a data file containing the list of telephoneUse a class object to store each set of data, access the file created and implement the following tasks Determine the telephone number of specified person Determine the name if telephone number is known Update the telephone number, whenever there is a change.
Write a menu driven program that will create a data file containing the list of telephone numbers in the following form John 23456 Ahmed 9876 Use a class object to store each set of data, access the file created and implement the following tasks Determine the telephone number of specified person Determine the name if telephone number is known Update the telephone number, whenever there is a change. #include<iostream> #include<iomanip> #include<fstream> using namespace std; #include<string.h> class Person { public: char name[10]; int PhNo; void input_data() { ...