void bisectionMethod(float leftBoundary, float rightBoundary, float * coefficient, int * exponent, int n); void newtonRapsonMethod(float initialValue, float * coefficient, int * exponent, int n); ...