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; // Parent class class MyClass { public: void myFunction() { cout << "Some content in parent class." ; } }; // Child class class MyChild: public MyClass { }; // Grandchild class class MyGrandChild: public MyChild { }; int main() { MyGrandChild myObj; myObj.myFunction(); return 0; }
Some content in parent class.