赞
踩
- int add(int a,int b){
- return a+b; //功能函数
- }
-
- int showRes(int a,int b,int(*p)(int ,int)){ //函数指针作为形参
- p(a,b);
- }
-
- void testRecall(){
- int (*p)(int,int);
- p=add;
- printf("%d",showRes(10,20,p));
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。