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 is pre-processor in C++?
What is an Iterator class?
How many bit combinations are there in a byte?
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
Explain "const" reference arguments in function?
how many trys can we write in one class
What happens when you make call 'delete this;'?
What is unary operator? List out the different operators involved in the unary operator.
What is #include iomanip?
Can we get the value of ios format flags?
How do you decide which integer type to use?
Can we define a constructor as virtual in c++?