一、题目
设置一个c语言共同体,并用共同体输出数据
如图:
二、代码图片【带注释】
三、源代码【带注释】
#include <stdio.h>
#include<string.h>
//定义一个共同体
union test
{
int i;
char ch[10];
int id;
};
//注意:共同体要赋值一个,立即输出一个
//如果全部赋值以后再输出,则结果会错误
int main()
{
union test t;
//输出t.i
t.i=1;
printf("%d\n",t.i);
//输出t.ch
//不能直接赋值,要用strcpy函数赋值
strcpy(t.ch,"培杰");
printf("%s\n",t.ch);
//输出t.id
t.id=3;
printf("%d\n",t.id);
}
关注我, 每天分享编程知识