write a c program to find the roots of a quadratic equation
ax2 + bx + c = 0
Answers were Sorted based on User's Feedback
#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 |
write a program to print %d ?
What is wrong with this program statement?
Describe dynamic data structure in c programming language?
What is a union?
How do I get an accurate error status return from system on ms-dos?
Can we write a program without main() function?
Why array is used in c?
What is use of integral promotions in c?
Describe advantages and disadvantages of the various stock sorting algorithms
Is main an identifier in c?
how to create duplicate link list using C???
#include<stdio.h> void main() { int =1; printf("%d%d%d",a++,++a,++a); }