What are the c++ access specifiers?
In C++, there are three access specifiers: public - members are accessible from outside the class. 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 |
Are c and c++ similar?
Why c++ does not have finally?
Is ca high or low level language?
What is the difference between a definition and a declaration?
which operator is used for performing an exponential operation a) > b) ^ c) none
What is the difference between interpreters and compilers?
What is a container class? What are the types of container classes in c++?
Const char *p , char const *p What is the difference between the above two?
What will the line of code below print out and why?
What are proxy objects?
Which is the best c++ compiler for beginners?
Explain the concept of memory leak?