struct tt
{
 char d[10];
 char s[5];
};
이거는 sizeof(tt) 하믄 15나오는데
struct tt
{
 int d;
 char s;
};
이거는 왜 sizeof(tt) 하믄 8이 나와??
알려주 ㅠㅠ