How do you invoke a base member function from a derived class in which you have not overridden that function?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
How does c++ sort work?
What are dynamic type checking?
What is function prototyping?
What are 2 ways of exporting a function from a dll?
What are abstract data types in c++?
What is the sequence of destruction of local objects?
I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.
What is a storage class? Mention the storage classes in c++.
What are guid? Why does com need guids?
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
What is purpose of new operator?