今天给大家带来一道经典、易错的关于C语言结构体内存对齐的题目:
求32bit环境下以下结构体所占的字节数:
typedef struct test_struct
{
char a;
short b;
char
2020-04-27