写了一个
#include "stdio.h"
/*
一个函数的指针
指向的函数的类型是有两个整形参数并且返回一个函数指针的函数
返回的函数指针指向有一个整形参数且返回整型数的函数。
*/
typedef int f_type(int);
typedef f_type* ff_type(int, int);
int type_f(int a)
{
return a + 4;
}
f_type* type_ff(int a, int b)
{
return &type_f;
}
ff_type* ff_type_p = &type_ff;
int main()
{
f_type* f_type_p = ff_type_p(12,11);
printf("%d\n", f_type_p(123));
return 0;
}
发布于 2023-06-28 14:48・IP 属地广东