Declare a pointer to pointer to function.

Answer:
int ( * ( * ptr ) ) ( );
Here ptr is pointer to pointer to such function which returns type is int and parameter is void.

No comments: