What is linked list in c++?
What is friend class in c++ with example?
What is switch case in c++ syntax?
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
Describe the advantage of an external iterator.
how to explain our contribution in the project?
Which is better turbo c++ or dev c++?
What is Pure Virtual Function? Why and when it is used ?
Explain this pointer?
What is #include cmath?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
Do we have to use initialization list in spite of the assignment in constructors?
How do you clear a map in c++?