初中生
最后登录1970-1-1
在线时间 小时
注册时间2016-11-4
|
发表于 2016-11-4 22:41:02
|
显示全部楼层
- #include <stdio.h>
- #include <stdlib.h>
- struct stu
- {
- union{
- char bj[5];
- short int bh[2];
- }class;
- char xm[8];
- float cj;
- }xc;
- int main()
- {
- printf("short int %d,char %d,float %d\n", sizeof(short int), sizeof(char), sizeof(float));
- printf("%d,%d", &xc, &xc.xm);
- return 0;
- }
复制代码
输出:
short int 2,char 1,float 4
4225424,4225430
--------------------------------
Process exited after 0.01297 seconds with return value 0
请按任意键继续. . .
好吧,实测不服不行...
|
|