write a c program to find the roots of a quadratic equation
ax2 + bx + c = 0
Answer Posted / rupesh
#include<stdio.h>
#include<conio.h>
void main()
{
int a, b, c;
float x1, x2, root, d;
clrscr();
printf("Enter the values of a, b & c");
scanf("%d %d %d", &a, &b, &c);
if(a==0 && b==0)
printf("There izz no Soln...");
else
if(a=0)
{
root= -c/b;
printf("root = %d", root);
}
else
d = b*b-4*a*c;
if(d>=0)
{
x1 = (-b + d)/2*a;
x2 = (-b - d)/2*a;
printf("Roots are....x1 = %f, x2 = %f\n", x1,x2);
}
else
printf("Given Eqn has imaginary roots");
getch();
}
| Is This Answer Correct ? | 32 Yes | 41 No |
Post New Answer View All Answers
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm
What's the best way of making my program efficient?
What is the difference between if else and switchstatement
Describe newline escape sequence with a sample program?
I need previous papers of CSC.......plz help out by posting them.......
Linked lists -- can you tell me how to check whether a linked list is circular?
What are local static variables? How can you use them?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
Why is c called "mother" language?
What is a sequential access file?
Are the expressions * ptr ++ and ++ * ptr same?
What is build process in c?
What is calloc in c?
What is wrong with this statement? Myname = 'robin';
Is it possible to pass an entire structure to functions?