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 are the static members and static member functions?
Describe new operator?
What is different in C++, compare with unix?
Can I make ios apps with c++?
Write a program to interchange 2 variables without using the third one.
Why is main an int?
Is c++ slower than c?
Enter n no. of element and delete value from desire position
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What is a c++ object?
what are the decision making statements in C++? Explain if statement with an example?
What is the use of main function in c++?