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 |
What compiler was used?
an operation between an integer and real always yeilds a) integer result b) real result c) float result
Explain some examples of operator overloading?
How is c++ used in the real world?
How do I exit turbo c++?
What are maps in c++?
What is lvalue?
What is an incomplete type?
What is the difference between std::vector and std::list
why the size of an empty class is 1
How const int *ourpointer differs from int const *ourpointer?
Which operator can not be overloaded in C++?