✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class base
{int x, y;
public: int getx () {return x; }
int gety () {return y; }
};
class Derived: private base
{int z;
public: int getz () {return z; }
base :: getx;
} Obj;
Який з наступних операторів призведе до помилок компіляції?
(C++)