题目内容
下列程序的运行结果为( )#include #include struct A{int a;char b[10];double c;};void f (struct A *t);main(){struct A a={1001,"ZhangDa",1098,0};f(&a);printf("%d,%s,%f\n",a.a,a.b,a.c);}void f(struct A *t){strcpy(t->b,"ChangRong");}
查看答案
搜索结果不匹配?点我反馈