Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
class MyClass
{
protected:
int itsValue;
public:
MyClass(int value){itsValue = value;}
};
class InhClass : public MyClass
{
public:
InhClass() :
MyClass(0) // Call MyClass's constructor and set itsValue to 0
{
}
};
int main()
{
InhClass class2;
return 0;
}