Root finding

#include<stdio.h> float a,b,c; float func(float (*pf)(float x), float x, float y); float f( float z); main(){ a=2.0; b=3.0; c=func(f,a,b); printf("%f\n",c); } float func(float(*pf)(float x), float x, float y){ float c; c=(*pf)(x); c=y*c; return(c); } float f(float z){ return(1.0/(z*z)); } (defun

Home 2.0
error: Content is protected !!