Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
using namespace std; // Base class class MyClass { public: void myFunction() { cout << "Some content in parent class.\n" ; } }; // Another base class class MyOtherClass { public: void myOtherFunction() { cout << "Some content in another class.\n" ; } }; // Derived class class MyChildClass: public MyClass, public MyOtherClass { }; int main() { MyChildClass myObj; myObj.myFunction(); myObj.myOtherFunction(); return 0; }
Some content in parent class.
Some content in another class.