This is a C++ project for a simple Bank Management System. The system allows users to:
- Create a new account
- Deposit and withdraw money
- Check account information
The data is stored in a local text file (data.txt
) and is updated with each transaction.
- Create Account: Users can create a new bank account with a unique account number, name, father's name, CNIC, phone number, email, and initial deposit.
- Deposit Amount: Users can deposit money into their account.
- Withdraw Amount: Users can withdraw money from their account.
- Check Account Info: Users can check their account information, including balance and personal details.
- Ensure you have a C++ compiler (e.g., GCC or MinGW).
- Compile the code with:
g++ -o BankManagementSystem main.cpp
- Run the Program
./BankManagementSystem