union aa {float x; float y; char c[6];};
struct st{union aa v; float s[5];double ave;}w;
則變量w在內存中所占的字節數是多少?
為什麼答案是 40 ?不懂啊,求大神指點!
union aa占8個字節(由於內存對齊的原因,這個好理解吧)
float s[5]應該占4*5=20字節,但由於有double所以要以8字節進行對齊,所以就多補了4個字節
double占8個字節
8+4*5+4+8=40