MSUStudentWork/45Ex/solve_polynomial.h
2024-09-22 22:05:28 +03:00

9 lines
203 B
C

#ifndef SOLVE_POLYNOMIAL
#define SOLVE_POLYNOMIAL
#include <stdio.h>
#include <math.h>
int solvePolynomial(FILE * file, double x, double * derivative, double * polynomial);
#endif // SOLVE_POLYNOMIAL