Problem #859 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create a class called "Bank" with a collection of accounts and methods to add and remove accounts, and to deposit and withdraw money. Also define a class called "Account" to maintain account details of a particular customer.

Your Solution