This is a console-based C++ project simulating a basic banking system. It supports:
- Creating multiple accounts
- Depositing and withdrawing money
- Viewing account details
- Account login using account number
- C++ (Standard Library)
- Object-Oriented Programming (OOP)
- Console-based I/O
-
Compile the file using a C++ compiler: g++ banking_system.cpp -o banking_system
-
Run the executable: ./banking_system (Linux/Mac) or banking_system.exe (Windows)
- File handling for saving/loading account data
- User authentication (passwords)
- GUI interface (future scope)