This project is menu driven C++ code for bank management to store data, retrieve, append, delete, search and modify (City, Phone no. or both) using file handling.
g++ Bankmanagement.cpp -o Bankmanagement
./Bankmanagement
- Mainu driven C++ code using the concepts of Object Oriented Programming & File handling.
- Create Account :- To store data - Account number, Name, Bank type, Phone no., City and Balance
- Display Account :- To retrieve all the data
- Search Account :- To search particular record based on account number
- Append Account :- To store data in append mode
- Delete Account :- To delete a particular record based on account number after confirmation
- Modify Account :- To modify a particular record based on account number. You can modify City, Phone no. or both based on your choice.
- The data gets store in bank.txt file created in current directory.