Question: using c++ BankAccount.h #include using namespace std; class BankAccount { private: int ID; string Firstname; string Surname; char Acc_type; float Acc_balance; public: BankAccount(); BankAccount(const BankAccount&

 using c++ BankAccount.h #include using namespace std; class BankAccount { private:

using c++

BankAccount.h #include using namespace std; class BankAccount { private: int ID; string Firstname; string Surname; char Acc_type; float Acc_balance; public: BankAccount(); BankAccount(const BankAccount& old); void setID(); int getID(); void setFirstname(); string getFirstname(); void setSurname(); string getSurname(); void setAcc_type(); char getAcc_type(); void setAcc_balance(); float getAcc_balance(); void print(); void Deposit(float a); bool Withdraw(float a); float enquiry(); void HolderName(); ~BankAccount(); };

| IL | 1 | tary

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!