摘要: 1 #include <stdio.h> 2 void (*p)(int); // <==>int a;变量的定义 3 void *f(int);//声明 4 5 void foo(int a) 6 { 7 printf("foo: %d\n", a); 8 } 9 10 int main() 11 阅读全文
posted @ 2021-01-21 15:37 刘大侠GG_B 阅读(60) 评论(0) 推荐(0) 编辑