Which of the following statements is FALSE?
class base {
public:
void show() {}
};
class sub : private base {
public:
void print() {}
protected:
void display() {}
};
void main() { sub objs; }
Reveal answer
Fill a bubble to check yourself