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
Write a program which employs Recursion
What is the cout in c++?
Which operations are permitted on pointers?
How long will it take to learn programming?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
What is the two main roles of operating system?
What is an undefined reference/unresolved external symbol error and how do I fix it?
What is the need of a destructor? Explain with the help of an example.
Can non graphic characters be used and processed in C++?
What is istream c++?
Is there any function that can skip certain number of characters present in the input stream?
What is the best ide for c++?