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
Is c++ still being used?
How can you link a c++ program to c functions?
What is binary search in c++?
How can I learn dev c++ programming?
How can you tell what shell you are running on unix system?
which is the easy way to divide any integer by 2?
write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;
What is time_t c++?
What are the two main components of c++?
Explain the difference between overloading and overriding?
What methods can be overridden in java?
What is the cout in c++?