/*Multiple Inheritance
A class can also be derived from more than one base class,
using a comma-separated list:*/

#include<iostream>
#include<string>
using namespace std;

// Base class
class MyClass {
  public:
    void myFunction() {
      cout << "Some content in parent class." ;
    }
};

// Another base class
class MyOtherClass {
  public:
    void myOtherFunction() {
      cout << "Some content in another class." ;
    }
};

// Derived class
class MyChildClass: public MyClass, public MyOtherClass {
};

int main() {
  MyChildClass myObj;
  myObj.myFunction();
  myObj.myOtherFunction();
  return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: