I know how to make a pointer to a function, something like this:
double (*function)(void);
This creates a pointer to a functions which takes no arguments and returns a double.
Now, as an exercice, i want to make an array of pointers to functions, but i don't know how to do that, if it is possible.