I need a global array of function pointers, and came up with this:
static int (*myArray[5])();
if i am right, this is "a global array of pointers to functions returning int". Is that right? Or is it "an array of pointers to functions returning a static int". I just need a quick answer.