I want to know whether the base class member functions can be accessed in derived class with out using protection
Printable View
I want to know whether the base class member functions can be accessed in derived class with out using protection
The members functions of base class can be accessed form its derived class if they are declared as public or protected...
No, we the base class member functions cannot be accessed in derived class with out using protection.To access the base class member should be declared as either public oe protected.