write a program to calculate the rules of a quadratic equation using user defined function.
Answers
Answered by
3
Let's create another C program in which we have used function.
- #include<stdio.h>
- #include<conio.h>
- #include<stdlib.h>
- #include<math.h>
- // use function to check the nature of the roots in the quadratic equation.
- void R_Quadratic( int x, int y, int z)
- {
Similar questions