- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Environmental Science
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to Solve Second Order Quadratic Equation Using C Program
Program : To obtain solution of second order quadratic equation
#include <stdio.h>
#include <math.h>
int main() {
float a, b, c;
float desc, root1, root2;
printf("\nEnter the Values of a : ");
scanf("%f", &a);
printf("\nEnter the Values of b : ");
scanf("%f", &b);
printf("\nEnter 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("\nFirst Root : %f", root1);
printf("\nSecond Root : %f", root2);
return (0);
}
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
- Related Questions & Answers
- How to Calculate Area of Right angle Triangle using C Language
- Write a ‘C’ Program to compute the sum of all elements stored in an array using pointers
- How to Calculate Area of Equilatral Triangle using C Language
- Write C Program to Find Largest Element in Array in C Programming
- Write C program to find Exponent Power Series
- Write C Program to Find Smallest Element in Array in C Programming
- How to reverse a given number using C
- How to calculate gross salary of a person using C Program
- Write C Program to Delete duplicate elements from an array
- How to calculate sum of 5 subjects and find percentage Using C Program
- How to convert temperature from degree centigrade to Fahrenheit using C
- How to check the type of triangle using C
- How to read the values of x, y and z and print the results expressions in one line using C Program
- How to Check Whether Number is Perfect Or Not using C
- How to print hello world using C Language
- Write C Program to Merge Two arrays in C Programming
Advertisements
ads