Write a C++ Program for Bank Account Class
/*Define a class to represent a bank account. Include the following
members:
Data Members
1 Name of the depositor
2 Account Number
3 Type of account
4 Balance amount in the account
Member function
1 To assign initial values
2 To deposit an amount
3 To withdraw an amount after checking the balance
4 To display name and Balance
write a main program to test the program.   */
#include 
#include 
#include 
class bank
{
char name[20];
int acno;
char actype[20];
int bal;
public :
void opbal(void);
void deposit(void);
void withdraw(void);
void display(void);
};
void bank :: opbal(void)
{
cout<
cout<<"Enter A/c no. :-"; cin>>acno;
cout<<"Enter A/c Type :-"; cin>>actype;
cout<<"Enter Opening Balance:-"; cin>>bal;
}
void bank :: deposit(void)
{
cout<<"Enter Deposit amount :-"; int deposit=0; cin>>deposit;
deposit=deposit+bal;
cout<<"\nDeposit Balance = "<
bal=bal-withdraw;
cout<<"After Withdraw Balance is "<
        switch(choice)
        {
        case 1: o1.opbal();
           break;
        case 2: o1.deposit();
           break;
    case 3: o1.withdraw();
           break;
        case 4: o1.display();
           break;
   case 5: goto end;
        }
  }while(1);
end:
}
