STL (140)
OOPS (873)
C++ General (2409) How do you invoke a base member function from a derived class in which you’ve overridden that function?
1176If horse and bird inherit virtual public from animal, do their constructors initialize the animal constructor? If pegasus inherits from both horse and bird, how does it initialize animal’s constructor?
1266If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
1108
How can I improve my c++ skills?
what is multi-threading in C++?
What is else if syntax?
What is the use of dot in c++?
Is stl part of c++ standard?
What are destructors?
Refer to a name of class or function that is defined within a namespace?
How does stack look in function calls? Write a recursive function call, how will the stack look like?
What are static member functions?
To solve the 8 Queens problem, which algorithm is used?
Discuss about iteration statements in C++ .
How would you use qsort() function to sort an array of structures?
What are the three parts of a simple empty class?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
What is a v-table?