What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Explain how a pointer to function can be declared in C++?
Can I learn c++ without learning c?
What is abstraction c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Which of the following operator cannot be overloaded?
Is c++ high level programming language?
whats the size of class EXP on 32 bit processor? class EXP { char c1; char c2; int i1; int i2; char *ptr; static int mem; };
What are static and dynamic type checking?
What is class and structure in c++?
How do you allocate and deallocate memory in C++?
What is the difference between shallow copy and deep copy?