The task is ...
Enter e (precision, for example, 0.0012), m (the number of members of a polynomial, for example, 25) and x (for example, 3).
Calculate the value of the function: 
How to implement it?
Update
My version is simple, normal function, but wrong.
float ex=0, znam=4, chisl=1, _item= 1/4, sumx = 1, n=0; for (int i = 0; i < m; i++) { sumx += (_item *= (((chisl += 4)*pow(x, ex +i)) / (znam += 4))); printf("%.8f\n", sumx); } return sumx; It should be as easy to do.