#include <stdlib.h>#include <stdio.h>//typedef void (*pf) (); void f1(){};void f2(){};int main(){ void (*pf[2]) ()=...{f1,f2}; system("pause"); return 0;}......... ......... #include <stdlib.h>#include <stdio.h>typedef void (*pf) (); void f1(){};void f2(){};int main(){ //void (*pf[2]) ()={f1,f2}; pf p[2]=...{f1,f2}; system("pause"); return 0;}.........