C++ Program CH 12 working with advanced file operations First you should design
ID: 3633708 • Letter: C
Question
C++ Program CH 12 working with advanced file operations
First you should design the function main, which call the other program function.
write a program that uses a structure to store the following data about a customer account:
Name
Address
City,State,and ZIP
Telephone Number
Account Balance
Date of Last Payment
The structure should be used to stored customer accounts records in a file. The program should have a menu that lets the user perform the following operations:
- Enter new records into the file.
-Search for a particular customer's record and display it.
-Search for a particular customer's record and delete it.
-Searach for a particular customer's record and change it.
-Display the contents of the entire file.
Input Validation: When the data for a new account is entered, be sure the user enters data for all the fields. No negative account balances should be entered.