STL (140)
OOPS (873)
C++ General (2409)
Difference between overloading vs. Overriding
What is pure virtual function? Or what is abstract class?
What do you mean by early binding?
What is an algorithm (in terms of the STL/C++ standard library)?
What are the 4 types of library?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
What is the difference between *p++ and (*p)++ ?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
Is there structure in c++?
What is the difference between map and hashmap in c++?
What do c++ programmers do?
what are the types of Member Functions?
write a C++ program for booking using constructor and destructor.
What are built-in functions? What is the syntax for the definition?