What are the advantages of prototyping?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between std::vector and std::list
What is scope resolution operator in c++ with example?
What is singleton pattern in c++?
What are the uses of pointers?
What are the characteristics of friend functions?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
What is design pattern?
Write about the stack unwinding?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Explain stack unwinding.
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 )?