About Me

My photo
Raipur, Chhattisgarh, India
Hi , I am Amit Thakur. I have worked as a QA Engineer for two years and as a Java Developer for one year in NIHILENT TECHNOLOGIES PVT. LTD., Pune.Currently I am working as DEAN (Research & Development) in Bhilai Institute of Technology, Raipur.

Friday, August 30, 2013

C Program : To obtain solution of second order quadratic equation


#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
float a,b,c;
float desc,root1,root2;
clrscr();
printf("Enter the Values of a : ");
scanf("%f",&a);
printf("Enter the Values of b : ");
scanf("%f",&b);
printf("Enter the Values of c : ");
scanf("%f",&c);

desc = sqrt(b*b-4*a*c);

root1 = (-b + desc)/(2.0*a);
root2 = (-b - desc)/(2.0*a);

printf("First Root : %f",root1);
printf("Second Root : %f",root2);

getch();
}
Output :
Enter the Values of a : 1
Enter the Values of a : -5

Enter the Values of a : 6

First Root : 3.000000
Second Root : 2.000000

No comments: