How to Generate a unique account number for each customer? if we are creating a mini bank management system in c++ language.
Answers
Answered by
0
Answer:
Deposit Money: Deposit money function is created to deposit money to the account by asking amount by the customer.
It will ask the amount and add it to the available balance.
Total Balance = Available Balance + Deposited Amount
// Method to add balance in account
void Bank::deposit_money()
{
int Amount;
// Enter Amount to Deposit
Amount = 9500;
cout
Similar questions