#include #include // NEWTON RAPHSON METHOD float f(float x); float f_(float x); float abso(float x); void main(void) { float x,xa,err; printf("\nEnter the initial estimate of the root > "); scanf("%f",&x); printf("\nEnter the allowed zero error in root of f(x) > "); scanf("%f",&err); while(1) { xa=x-f(x)/f_(x); if(abso( f(xa) )