You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Student : private Human{ //changing access level of Base class members in Derived class.
public:
using Human :: name; //Here the member 'name' of the base class was in private block, by declearing it like this in the public block, now it's access level has changed to public.