In the derived class, which data member of the base class are visible?
List the merits and demerits of declaring a nested class in C++?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
Does c++ support multilevel and multiple inheritances?
How the endl and setw manipulator works?
What is oops in c++?
Is it possible to pass an object of the same class in place of object reference to the copy constructor?
Explain about vectors in c ++?
What is boyce codd normal form in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
what is upcasting in C++?
Explain what are single and multiple inheritances in c++?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
Is std :: string immutable?
How do I get good at c++ programming?