int * func (int, double);
Is a pointer to a function func returning int and taking arguments of type int and double.
You don’t need to take the memory address or dereference functions, because you can only call a function or take it’s address again.
int func(int x) { return x; };
int * pointer_to_func (int) = func; // & not necessary