單項選擇題

"若有下面的說明和定義,
struct test
{ int ml;
char m2;
float m3;
union uu
{char ul[5]; int u2[2];} ua;
} myaa;
則sizeof(struct test )的值是()

A.12
B.16
C.14
D.20


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題

若程序中有下面的說明和定義,則會發(fā)生的情況是()
struct abc
{int x;char y;}
struct abc s1,s2;

A.編譯出錯
B.程序?qū)㈨樌幾g`連接`執(zhí)行
C.能順利通過編譯`連接`但不能執(zhí)行
D.能順利通過編譯`但連接出錯

2.單項選擇題關于定義共用體變量格式正確的是()

A.unionData{inti;charch;floatf;}a
B.unionData{inti;charch;floatf;}union Data a
C.unionData{inti;charch;floatf;};union a

3.單項選擇題下列選項中關于結構體普通變量定義的格式正確的是()

A.function 結構名 變量名
B.static 結構名 變量名
C.struct 變量名 結構名
D.struct 結構名 變量名

4.單項選擇題student是一個結構體類型,則結構體變量定義正確的是()

A.struct student a
B.a student
C.struct a
D.以上都不對