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
Who invented turbo c++?
Why c++ is the best language?
Will rust take over c++?
What is array in c++ pdf?
Define a constructor - what it is and how it might be called (2 methods)?
What is ios flag in c++?
What is the use of function pointer?
What is a container class?
Define whitespace in C++.
Is java the same as c++?
How do we implement inheritance in c++?
What is jump statement in C++?
Write bites in Turbo c++ Header ("Include") Files.
Should you pass exceptions by value or by reference?
What operator is used to access a struct through a pointer a) >> b) -> c) *