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
find the sum of two matrices and WAP for it.
How would you obtain the current time and difference between two times?
What is data structure in c and its types?
What do mean by network ?
Why does this code crash?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is the default value of local and global variables in c?
What is typedf?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
What are nested functions in c?
Define Spanning-Tree Protocol (STP)
How does free() know explain how much memory to release?
What is c system32 taskhostw exe?
What is a pointer on a pointer in c programming language?
Which is an example of a structural homology?