Hello,
I am attempting to make an array of function pointers for iteration purposes.
I have the following function prototypes:
I want to make an array called functions. How do I do this? All my functions take the same arguments and return the same datatypes (int). How do I make an array out of these and how do I access the function once in the array?Code:int bubble(int **, int, int);
int quick(int **, int, int);
int shell(int **, int, int);
