C++
Programming and Technical
What are the access privileges in C++? What is the default access level?
Read Solution (Total 1)
-
- The access privileges in C++ are most often called access specifiers. The access specifiers are 'public, 'private', and 'protected'. The default access specifier for a C++ class is 'private'. The default access specifier for a structure is 'public'.
- 6 years agoHelpfull: Yes(0) No(0)
C++ Other Question