#include <stdio.h>
struct STU
{
char name[9];
char sex;
int score[2];
};
void f(struct STU a[])
{
struct STU b = { "zhao",'m',85,90 };
a[1] = b;
}
main()
{
struct STU c[2] = { {"qian",'f',86,75},{"sun",'m',20,30}};
f(c);
printf("%s%c%d%d", c[1].name, c[1].sex, c[1].score[0], c[1].score[1]);
结构体在函数中赋值,并没有采用地址赋值,为什么会传递回去?
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
悬赏问题
- ¥100 关于加载卡的问题有能知道这个要怎么处理吗?
- ¥100 rtmpose姿态评估
- ¥15 java 通过反射找路径下的类,打包后就找不到
- ¥15 通联支付网上收银统一下单接口
- ¥15 angular有偿编写,
- ¥15 centos7系统下abinit安装时make出错
- ¥15 hbuildex运行微信小程序报错
- ¥15 关于#python#的问题:我知道这个问题对你们来说肯定so easy
- ¥15 wpf datagrid如何实现多层表头
- ¥15 为啥画版图在Run DRC会出现Connect Error?可我Calibre的hostname和计算机的hostname已经设置成一样的了。