This project is a Bank Management System implemented in C++ with persistent data storage.
It provides functionality to manage bank clients and perform financial transactions through a simple console-based interface.
- Client Management:
- Show all clients
- Add new client
- Update client information
- Delete client
- Find client by account number
- Transactions:
- Deposit money
- Withdraw money
- Show total balances
- Data Persistence:
- All clients are stored in
Bank.txt - Data is saved after each operation
- All clients are stored in
- Language: C++
- IDE: Visual Studio 2022 (or any C++ compiler)
- File storage:
Bank.txt
- Clone this repository or download the source code.
- Open the project in Visual Studio 2022 or compile with any C++ compiler.
- Make sure
Bank.txtexists in the same directory as the executable (it will be created automatically if not). - Run the program.