explain this code #include #include using namespace std; class bank_account { int acno; char nm[100], acctype[100]; float bal; public: bank_account(int acc_no, char *name, char *acc_type, float...


explain this code


#include
#include


using namespace std;


class bank_account
{
int acno;
char nm[100], acctype[100];
float bal;

public:
bank_account(int acc_no, char *name, char *acc_type, float balance)

{
acno=acc_no;
strcpy(nm, name);
strcpy(acctype, acc_type);
bal=balance;
}
void deposit();
void withdraw();
void display();
};
void bank_account::deposit()

{
int damt1;
cout<"\n enter="" deposit="" amount=";
cin>>damt1;
bal+=damt1;
}
void bank_account::withdraw()

{
int wamt1;
cout<<" \n="" enter="" withdraw="" amount=";
cin>>wamt1;
if(wamt1>bal)
cout<<" \n="" cannot="" withdraw="">
bal-=wamt1;
}
void bank_account::display()

{

cout<"\n name="" :=""><>
cout<"\n account="" type="" :=""><>
cout<"\n balance="" :=""><>

}
int main()
{
int acc_no;
char name[100], acc_type[100];
float balance;
cout<"\n name="" :="">
cin>>name;
cout<"\n account="" type="" :="">
cin>>acc_type;
cout<"\n balance="" :="">
cin>>balance;


bank_account b1(acc_no, name, acc_type, balance);

b1.deposit();

b1.withdraw();

b1.display();

return 0;
}



Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here