***Welcome to ashrafedu.blogspot.com * * * This website is maintained by ASHRAF***

Monday, June 14, 2021

Demonstration on multiple inheritance

 

#include<iostream.h>

#include<conio.h>

class A

{

private:

int x;

public:

void getA()

{

cout<<"Enter x : ";

cin>>x;

}

void showA()

{

cout<<"X = "<<x<<endl;

}

};

class B

{

private:

int y;

public:

void getB()

{

cout<<"Enter y: ";

cin>>y;

}

void showB()

{

cout<<"Y = "<<y<<endl;

}

};

class C : public A, public B

{

public:

void getC()

{

getA();

getB();

}

void showC()

{

showA();

showB();

}

};

void main()

{

clrscr();

C obj;

obj.getC();

obj.showC();

getch();

}

No comments:

Post a Comment