#include "header.h" int main(void) { int NMin=0, NMax=3; //Specs for the table. Can easily be changed double XMin=.5, XMax=5, dx=2; double (*FunctionPointer) (int, double) = f; //declaring the function pointer MakeTable(NMin,NMax,XMin,XMax,dx,FunctionPointer); //calling the function to make the table return 0; }