重複の可能性:
Cの構造体の実際のサイズはいくつですか
次のプログラムをCで作成しましたが、実行可能ファイルが出力する構造体のサイズについて少し混乱しています。コードは次のとおりです。
#include <stdio.h>
#include <stdlib.h>
struct domi1{
char x;
int c;
char y;
};
struct domi2{
char x;
char y;
int c;
};
main(){
printf("The size of domi1 is: %d\n", sizeof(struct domi1));
printf("The size of domi2 is: %d\n\n", sizeof(struct domi2));
system("pause");
}
プログラムは、domi1のサイズとして12を出力し、domi2のサイズとして8を出力します。何故ですか?私はあなたの助けに感謝します!