有以下程序: #include<stdi0.h>  #

有以下程序: #include<stdi0.h>  #include<string.h>struct A{int a;char b[10];double C;); void f(struct A t); main(  ){struct A a={1001,ZhangDa,l098,0};  f(a);printf(%d,%S,%6.1f,a.a,a.

问题:

[单选] 有以下程序:
#include<stdi0.h>
#include<string.h>
struct A
{int a;char b[10];double C;);
void f(struct A t);
main(  )
{struct A a={"1001,"ZhangDa",l098,0};
 f(a);printf("%d,%S,%6.1f",a.a,a.b,a.c);}
void f(struct A t)
{t.a=1002;strcpy(t.b,"ChangRon9");t.c=1202.0;}
程序运行后的输出结果是(  )。

A . 1001,ZhangDa,1098.0
B . 1002,ChangRong,1202.0
C . 1001,ChangRong,1098.0
D . 1002,ZhangDa,1202.0

参考答案:A

参考解析:

将结构变量作为形参,通过函数间形参与实参相结合的方式将整个结构传递给函数,这种传递方式是值传递。在被调用函数中,对结构形参变量值进行的任何修改都不会影啊到调凋函数中的结构变量。

联系我们

联系我们

查看联系方式

邮箱: 2643773075@qq.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部