STL (140)
OOPS (873)
C++ General (2409)
What is the difference between the functions memmove() and memcpy()?
I want to write a C++ language program that: 1. Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. The program should work for squares of all side sizes between 1 and 20.
How do you invoke a base member function from a derived class in which you’ve overridden that function?
Which bitwise operator is used to check whether a particular bit is on or off?
Ask to write virtual base class code?
Define private, protected and public access control.
Why pointer is used in c++?
Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort
How did c++ get its name?
Declare a class vehicle and make it an abstract data type.
Can you inherit a private class?
Where and why do I have to put the "template" and "typename" keywords?
What is polymorphism and why is it important?
Explain deep copy and a shallow copy?
Is c better than c++?