InterviewSolution
Saved Bookmarks
| 1. |
What is the use of protected access specifier? |
|
Answer» The private member of a base class cannot be inherited to the derived class and protected member of a base class remains protected in a derived class. |
|