举个例子,传入不定参数函数printftypedef int (*FUN)(const char*,...);void func(FUN fp){ fp("hello world\n");}int main(){ func(printf);system("pause"); return 0;}