有以下程序 #include #include struet A {int a;char b[10];double c;}; struct A f(struct A t); main( ) {struct A a={1001,“ZhangDa”,1098

admin2010-04-08  20

问题 有以下程序
#include
#include
struet A
{int a;char b[10];double c;};
struct A f(struct A t);
main(  )
{struct A a={1001,“ZhangDa”,1098.0);
a=f(A);prinff(“%d,%S,%6.1f\n”,a.a,a.b,a.e);
}
struct A f(struct A t)
{t.a=1002;strepy(t.b,“changRong”);t.c=1202.O;return t;}
程序运行后的输出结果是

选项 A、1001,ZhangDa,1098.0
B、1002,ZhangDa,1202.0
C、1001,ChangRong,1098.0
D、1002,ChangRong,1202.0

答案D

解析 在主函数中,通过a=f(a)实现幽数调用,所以输出的结构体变量相应变为1002,ChangRong,1202.0。
转载请注明原文地址:https://kaotiyun.com/show/fDWp777K
0

最新回复(0)