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 are the extraction and insertion operators in c++? Explain with examples.
Are c and c++ similar?
What are the uses of static class data?
Is empty stack c++?
What are advantages and disadvantages of Design patterns?
What is difference between array and vector in c++?
Define whitespace in C++.
How is computer programming useful in real life?
What is stack unwinding?
What will i and j equal after the code below is executed? Explain your answer.
what is the diff b/n c and c++ a. dynamic scoping b. nested switching c. declaration of variables in any code block d. separation of compilation and linking
When copy constructor can be used?