I am having following pointer variable declaration



Static double (*funcs[]) (double) = { sin,cos,tan,asin,acos};


Here funcs is an array of pointers to functions which take double as...