例6.6

时间:2022-10-23 05:33:16 阅读: 最新文章 文档下载
说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

struct structData1

{

int i;

char ch;

double d;

short s;

float f;

long l;

};

sizeof(struct structData1)=(4+1+3空)+(8)+(2+4+2空)+(4+4空)=32

struct structData2

{

short int s1;

char ch1;

short int s2;

char ch2;

};

sizeof(struct structData2)=(2)+(1+1空)+(2)+(1+1空)=8

struct structData3

{

int s1;

char ch1;

short int s2;

char ch2;

};

sizeof(struct structData3)=(4)+(1+2+1空)+(1+3空)=12

本文来源:https://www.wddqw.com/doc/eef788687dd5360cba1aa8114431b90d6c858921.html