#include <stdio.h>
#include <stdlib.h>
typedef int (*pf)(int) ;
int print_self(int value)
{
printf("the value is %d\n",value);
return 1;
}
int test(int dd, pf ppp)
{
ppp(dd);
return 1;
}
int main()
{
int i = 10;
test(i,print_self);
return 1;
}
函数指针例子
最新推荐文章于 2022-09-08 17:44:20 发布