Firstly, I\'ve got functions like this.
void func1(); void func2(); void func3();
Then I create my typedef for the array:
v
typedef void (*FPTR)(); FPTR const fa[] = { f1, f2}; // fa[1] = f2; You get compilation error when uncomment this line.