Q:
C Program to Find the Roots of a Quadratic Equation using if-else
belongs to collection: C Programming on Numbers
C Programming on Numbers
- C Program to Print Even Numbers from 1 to N
- C Program to Print Even Numbers from 1 to N without If Statement
- C Program to Print Even Numbers in a Given Range
- C Program to Print Odd Numbers from 1 to N
- C Program to Print Odd Numbers in a Given Range
- How to find whether a given number is prime number in C?
- Optimize way to find an nth Fibonacci number using c programming
- C program to find a neon number
- write a program to check and print neon numbers in a given range
- C program to print natural numbers from 1 to n
- C program to print natural numbers within a range
- C Program to find the sum of natural numbers upto n
- C Program to find the sum of natural numbers within a range
- C Program to find the sum of odd natural numbers from 1 to n
- C Program to find the sum of odd numbers within a range
- C Program to find given number is the sum of first n natural numbers using Binary Search
- C Program to swap two numbers using a third variable or temp variable
- C Program to find given number is sum of first n natural numbers
- C Program to swap two numbers using arithmetic operator:
- C Program to find Perfect Number
- C program to check positive or negative without using conditional statements
- C program to find positive or negative using bitwise operators and if-else
- C program to find the negative or positive number using bitwise operators and ternary operators
- C program to count number of digits in a number
- C program to reverse digits of an integer with overflow handled
- C Program to find reverse of a number using a function
- C Program to reverse digits of a number
- C Program to swap two numbers using ex-or operator:
- C Program to find given number is the sum of first n natural numbers using Binary Search
- C program to find the generic root of a number
- C Program to calculate the square of a number using a function
- C program to find square of a number
- C Program to print the two digit number in words
- C program to find all roots of a quadratic equation using switch case
- C program to find the roots of a quadratic equation using a function
- C Program to Find the Roots of a Quadratic Equation using if-else
- Find Perfect Number using the function
The below program ask the user to enter the value of a,b and c. After getting the value from the user it will calculate on the basis of ‘Discriminant’ value.
Output:
Enter value of a of quadratic equation (aX^2 + bX + c): 2
need an explanation for this answer? contact us directly to get an explanation for this answerEnter value of b of quadratic equation (aX^2 + bX + c): 7
Enter values of c of quadratic equation (aX^2 + bX + c): 2
Two distinct and real roots exist: -0.31 and -3.19