有以下程序:  int fa(int x)   { return x *x;}  int fb(int x)   { return x *x *x;}  int f(int( *f1)( ),int( *f2)( ),int x)   { return f

admin2005-03-15  29

问题 有以下程序:  int fa(int x)   { return x *x;}  int fb(int x)   { return x *x *x;}  int f(int( *f1)( ),int( *f2)( ),int x)   { return f2(x)-f1(x);}  main( )   { int i;   i=f(fa,fb,2);printf("%d\n",i);  }  程序运行后的输出结果是

选项 A、-4
B、1
C、4
D、8

答案C

解析 本题考点是函数之间的参数传递。
转载请注明原文地址:https://kaotiyun.com/show/AeHp777K
0

相关试题推荐
最新回复(0)