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 |
What is an undefined behavior and sequence points
What is the difference between public, private, and protected access?
What is a volatile variable in c++?
write a c++ program that gives output 4 3 4 2 3 4 1 2 3 4 using looping statement
How do you allocate and deallocate memory in C++?
What are the c++ access specifiers?
Why should you learn c++?
What is srand c++?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
Explain what happens when a pointer is deleted twice?
Discussion on error handling of C++ .
What is late binding c++?