函数指针问题

来源:互联网 发布:热点设置软件 编辑:程序博客网 时间:2024/05/17 04:01


Expert C programming :

英文: P79

中文:P67

typedef void(*ptr_to_func) (int )/* this says that ptr_to_func is a pointer to a function that takes an int argument and returns void*/
sdf

void (*signal (int sig, void(*func)(int))) (int)


原创粉丝点击