Assignment No:5 Program Name
Assignment No:5 Program Name
Person
Name, code
Admin
Account
experience
pay
Master
Name,
code,
experienc
e, pay
#include<iostream.h>
#include<conio.h>
class person
{
protected:
char name[20],code[10];
public:
void input1();
void display1();
};
int main()
{
master m;
int option;
clrscr();
do
{
m.input1();
m.input2();
m.input3();
m.display();
cout<<"Do you want to update?"<<endl;
cout<<"If yes enter 1 otherwise enter 0."<<endl;
cin>>option;
}
while(option);
getch();
return 0;
}
/***************************OUTPUT****************************
******************************************************************/