Already have an account? Get multiple benefits of using own account!
Login in your account..!
Remember me
Don't have an account? Create your account in less than a minutes,
Forgot password? how can I recover my password now!
Enter right registered email to receive password!
Aim: To implement a program to create, update & display account & admin record of person using display account & admin records of person using virtual base class..
Code:
class person
{
int code;
char name[20];
public:
void getdata();
void displaydata();
};
class account: public virtual person
int pay;
class admin : public virtual person
int experience;
class master : account, admin
void person::getdata()
cout<<"\nCode: ";
cin>>code;
cout<<"Name: ";
cin>>name;
}
void account::getdata()
cout<<"Enter Pay: ";
cin>>pay;
void admin::getdata()
cout<<"Enter Experience: ";
cin>>experience;
void master::getdata()
person::getdata();
account::getdata();
admin::getdata();
void person::displaydata()
cout<<"\nEmployee code: "< cout<<"\nName: "< } void admin::displaydata() { cout<<"\nExperience: "< } void account::displaydata() { cout<<"\nPay: Rs."< } void master::displaydata() { person::displaydata(); account::displaydata(); admin::displaydata(); } void main() { int ch; clrscr(); master m1; cout<<"\n\tEnter Details:"; m1.getdata(); cout<<"\n\t**Details Registered Successfully**\n\n"; m1.displaydata(); getch(); } Output: Enter Details: Code: 312 Name: Bella Enter Pay: 320$ Enter Experience: 2 **Details Registered Successfully** Employee code: 312 Name: Bella Pay: 320$ Experience: 2 years
cout<<"\nName: "< } void admin::displaydata() { cout<<"\nExperience: "< } void account::displaydata() { cout<<"\nPay: Rs."< } void master::displaydata() { person::displaydata(); account::displaydata(); admin::displaydata(); } void main() { int ch; clrscr(); master m1; cout<<"\n\tEnter Details:"; m1.getdata(); cout<<"\n\t**Details Registered Successfully**\n\n"; m1.displaydata(); getch(); } Output: Enter Details: Code: 312 Name: Bella Enter Pay: 320$ Enter Experience: 2 **Details Registered Successfully** Employee code: 312 Name: Bella Pay: 320$ Experience: 2 years
void admin::displaydata()
cout<<"\nExperience: "< } void account::displaydata() { cout<<"\nPay: Rs."< } void master::displaydata() { person::displaydata(); account::displaydata(); admin::displaydata(); } void main() { int ch; clrscr(); master m1; cout<<"\n\tEnter Details:"; m1.getdata(); cout<<"\n\t**Details Registered Successfully**\n\n"; m1.displaydata(); getch(); } Output: Enter Details: Code: 312 Name: Bella Enter Pay: 320$ Enter Experience: 2 **Details Registered Successfully** Employee code: 312 Name: Bella Pay: 320$ Experience: 2 years
void account::displaydata()
cout<<"\nPay: Rs."< } void master::displaydata() { person::displaydata(); account::displaydata(); admin::displaydata(); } void main() { int ch; clrscr(); master m1; cout<<"\n\tEnter Details:"; m1.getdata(); cout<<"\n\t**Details Registered Successfully**\n\n"; m1.displaydata(); getch(); } Output: Enter Details: Code: 312 Name: Bella Enter Pay: 320$ Enter Experience: 2 **Details Registered Successfully** Employee code: 312 Name: Bella Pay: 320$ Experience: 2 years
void master::displaydata()
person::displaydata();
account::displaydata();
admin::displaydata();
void main()
int ch;
clrscr();
master m1;
cout<<"\n\tEnter Details:";
m1.getdata();
cout<<"\n\t**Details Registered Successfully**\n\n";
m1.displaydata();
getch();
Output:
Enter Details:
Code: 312
Name: Bella
Enter Pay: 320$
Enter Experience: 2
**Details Registered Successfully**
Employee code: 312
Pay: 320$
Experience: 2 years
O v e r l o a d i n g U n a r y Op e r a t o r s Us i n g F r i e n d F u n c t i o n cl a ss s i g n { i n t a ,
Define Static Storage Class in C Programming? The Static declarations have distinct and important uses. This allows the local variable to keep its previous value when the block
Write a program that illustrate Macros with Arguments? Macros is able to also have arguments, just as functions can. #define AREA(x)(3.14*x*x) Then at any time the prepr
array of class objects and single inheritance
how do I randomised numbers in an array?
a padovan string p(n) for a natural number n is defined as p(0)=''x'' p(1)=''y'' p(2)=''z'' p(n)=p(n-2)+p(n-3),n>2
Consider the following algorithm to generate a sequence of numbers. Start with an integer n. If n is even, divide by 2. If n is odd, multiply by 3 and add 1. Repeat this process wi
Define the Data Type Modifiers in C language? There are three data types(int, float & double) above have the following modifiers. 1. short 2. long 3. signed 4. unsigned
Write a program that finds the minimum total number of shelves, including the initial one required for this loading process.
how to write a program using arrays
Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!
whatsapp: +1-415-670-9521
Phone: +1-415-670-9521
Email: [email protected]
All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd