git clone https://github.com/coderDec/bearRobotics_ATM.git
From the directory where the repository is cloned, run the folloing command: g++ -std=c++11 -o ATM ATM.cpp
From the same directory run: ./ATM
- More user's can be created by creating objects of user class. Pin number can be specified at the time of creation.
- Each user upon creation has Checkings and Savings types of accounts.
- Insert card by calling -> insert_card();
- Verify Pin by calling -> verify_pin()
- Select desired account to do the transaction
- Deposit money by calling -> make_deposit()
- Withdraw money by calling -> withdraw_money()
- Remove card by calling -> remove_card()