#include "header.h" /*Make a function called MakeTable that prints a two dimensional array of function values for any function of the type defined in 1 to stdout. It needs to use a function pointer. The calling order for this function should be MakeTable(nMin,nMax,xMin,xMax,dx, f). nMin and nMax are integer values providing limits for the n. xMin and xMax are double precsion values providing limits for the x. The table should be nMax-nMin wide and floor((xMax-xMin)/dx) tall. MakeTable should be defined in a self contained file. */ void MakeTable(int nMin,int nMax,double xMin,double xMax,double dx,double (* bf)(int,double)) { int step; //width for x int i; // iteration of n double j; // iteration of x double ans; double tmp; printf("dsadsa\n"); step=(int)floor((xMax-xMin)/dx); for(i=nMin;i<=nMax;i++) { for(j=0;j