 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | Write short notes on public access specifiers. | 
| Answer» The public members of a class can be accessed by member functions of that class and also non member functions (outside the class) of the class. The public member functions can access private, protected and public data members of the class. | |