0
which members of A are accessible from B?and why? class A{ int a; protected: float b; public: char c; }; class B:private A{}; 1) a 2) b 3) c 4) none
3 Réponses
+ 3
none
0
I think its answer is b and c.
0
what do u mean by class B?? does it mean object of class B or some member function of class B