int (*f(float (*)(long),char *))(double)
f is a function that has 2 parameters of type
float (*)(long), << pointer to function long=>float
char * << string
and returns
(int)(*)(double) << a pointer to a function double=>int
2
solved How to create an example for the complex statement? [closed]