What is a container class?
What are advantages and disadvantages of Design patterns?
What's the order in which the objects in an array are destructed?
Why c++ does not have finally?
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 )?
How can we check whether the contents of two structure variables are same or not?
1.what is the difference between software & package &application.
How do I tokenize a string in c++?
What gives the current position of the put pointer?
write a programming using for loop in c++ to generate diamond trangel?
Declare a class vehicle and make it an abstract data type.
How the virtual functions maintain the call up?
What are the various storage classes in C++?