// Test Input Function for Function Pointers #include #include "fTest.h" void f(const float x, float *fValue){ int i; float g=1.0; g=x; for(i=0; i<12; i++){ g *= 1+cos(i*g*x); } *fValue = g; }