摘要:
#include <stdio.h> typedef int FuncType(int,int); //函数 typedef FuncType* FuncPointType; //函数指针 typedef FuncPointType ArrType[2]; //函数指针数组 int Add(int 阅读全文
posted @ 2020-07-03 09:29
是小邹啊
阅读(121)
评论(0)
推荐(0)
|
摘要:
#include <stdio.h> typedef int FuncType(int,int); //函数 typedef FuncType* FuncPointType; //函数指针 typedef FuncPointType ArrType[2]; //函数指针数组 int Add(int 阅读全文
posted @ 2020-07-03 09:29
是小邹啊
阅读(121)
评论(0)
推荐(0)
摘要:
#include <stdio.h> #include <string.h> typedef int FuncType(int,int); int Add(int a,int b) { return a + b; } int Sub(int a,int b) { return a - b; } vo 阅读全文
posted @ 2020-07-03 09:21
是小邹啊
阅读(110)
评论(0)
推荐(0)
|