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 is vector pair in c++?
Refer to a name of class or function that is defined within a namespace?
Explain register storage specifier.
What is the difference between static link library and dynamic link library?
without if else statement can be written ah
What is struct c++?
Differentiate between a template class and class template in c++?
Describe the main characteristics of static functions?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Describe public access specifiers?
What should main() return in c and c++?
Does c++ support multilevel and multiple inheritances?