#Second Order Quadratic Equation
1 posts
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("\nEn... Read Mores
Prathmesh Yelne
16-Dec-2021 16:09:33