骑蜗牛的机器猫 发表于 2018-3-21 11:12:40

关于结构体自动对齐的例题

本帖最后由 骑蜗牛的机器猫 于 2018-3-21 11:37 编辑

在vc标准编译器中:

#include <stdio.h>
struct Student
{
    int num;
    char name;
    char sex;
};
int main()
{
    printf("sizeof:%d",sizeof(struct Student));
    return 0;
}

答案是多少?
A:15B:16C:30        
页: [1]
查看完整版本: 关于结构体自动对齐的例题