摘要: 1. 函数指针是指针, 指向函数的指针 int (*p_fun)(int b, int c) 声明一个函数指针p_fun,它指向参数为int b, int c,返回值为int的函数。 int (*p_fun)(int, int) = NULL; //初始化指针为NULL 2. 指针函数是函数,返回值 阅读全文
posted @ 2020-04-03 14:28 猿起5-2 阅读(141) 评论(0) 推荐(0)