#include <stdio.h>
union data /* 定义共用体 */
{
int a; /* 4 */
float b; /* 8 */
double c; /* 8 */
char d; /* 4 */
};
struct stu /* 定义同样数据表的结构体 */
{
int a; /* 4 */
float b; /* 8 */
double c; /* 8 */
char d; /* 4 */
};
void main()
{
printf("结构体类型所占存贮空间为%d\n共用体类型所占存储空间为%d",sizeof(struct stu),sizeof(union data));
}
通过上述代码,可以清晰的知道共用体和结构体在内存中的存储情况。
以下是运行结果:
时间: 2024-10-29 05:14:36