#include #include #include #define FLEXIBLE_ARRAY_MEMBER 0 typedef struct { int a; char data[FLEXIBLE_ARRAY_MEMBER]; } st_1; typedef struct { st_1 c; // 空间覆盖了其它成员变量 int b; } st_2; int main(int argc, char **argv) { st_2 *s2 = malloc(sizeof(st_2) + sizeof(char) * 8); s2->b = 100; memset(s2->c.data, 0, sizeof(char) * 8); printf("%d\n", s2->b); return 0; }