摘要: //函数指针定义 //1 typedef int(fun_point1)(int, int); int get_sum(int a, int b) { return a + b; } typedef int(*fun_point2)(int, int); int main(void) { //call function fun_point1* p = get_sum; int su... 阅读全文
posted @ 2018-12-28 09:58 谋定而后动? 阅读(185) 评论(0) 推荐(0)