Answer Posted / hrpynux@gmail.com
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 |
Post New Answer View All Answers
What jobs can you get with a c++ certification?
What is the use of dot in c++?
Explain "const" reference arguments in function?
Write about the members that a derived class can add?
What is the difference between a pointer and a link in c ++?
Which is the best c++ compiler for beginners?
Differentiate between a template class and class template in c++?
What is a float in c++?
Which of the following is evaluated first: a) && b) || c) !
What is a unnitialised pointer?
How to access a variable of the structure?
Define copy constructor.
How much maximum can you allocate in a single call to malloc()?
Why is c++ not purely object oriented?
Is c++ double?