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 )?
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of static functions?
write a program that takes two numbers from user that prints the smallest number
What are signs of manipulation?
How to construct muliton object
How do you declare a set in c++?
Can you overload the operator+ for short integers?
Explain what data encapsulation is in c++?
Describe protected access specifiers?
Differentiate between declaration and definition.
What are c++ variables?
Is c++ primer good for beginners?
Write any small program that will compile in "C" but not in "C++"?