✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class A
{public: int a, b;
protected: int func (float d) {};
private: short i; } A1;
class B: public A
{private: int k; } B1;
class C: public B
{protected: int l, m; } C1;
(C++)