12 | C语言中的函数类型和函数指针类型
摘要:
函数类型和函数指针类型的区别,让我们先看一个例子 #include <iostream> using namespace std; typedef int(Func)(int); typedef int(*Func_p)(int) ; int f(int a){return a;} int main 阅读全文
posted @ 2023-04-26 11:51 独立树 阅读(40) 评论(0) 推荐(0) 编辑