有如下程序: #include <stdio.h> int func(int a,int b) { return(a+b):} main() { int x=2,y=5,z=8,r; r=func

admin2009-01-15  28

问题 有如下程序:    #include  <stdio.h>    int func(int a,int b)    {    return(a+b):}    main()    {    int x=2,y=5,z=8,r;         r=func(func(x,y),z);         printf("%d\n",r);    }    该程序的输出结果是(    )。

选项 A、12
B、13
C、14
D、15

答案8

解析 在表达式r=func(func(x,y),z)中,func(x,y)是第一次调用函数,它的返回值7作为func函数第二次调用的实参,结果为15。
转载请注明原文地址:https://kaotiyun.com/show/UUXp777K
0

最新回复(0)