What do you mean by C++ access specifiers ?
Access specifiers define how the members (attributes and methods) of a class can be accessed. ... private - members cannot be accessed (or viewed) from outside the class. protected - members cannot be accessed from outside the class, however, they can be accessed in inherited classes.
| Is This Answer Correct ? | 0 Yes | 0 No |
How can I learn dev c++ programming?
What are c++ data types?
What return value must conversion operators have in their declaration?
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
Is c++ built on c?
What is the purpose of extern storage specifier?
List out some of the object-oriented methodologies?
What is expression parser in c++
How can you quickly find the number of elements stored in a dynamic array? Why is it difficult to store linked list in an array?
What is lvalue?
reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
How can we access protected and private members of a class?