摘要: 结构体为: struct A { int a; char b; double c; }; struct B { int a; double c; char b; }; int main() { printf("%d %d", sizeof(A), sizeof(B)); } 在64位系统下,输出了 阅读全文
posted @ 2024-04-09 21:37 tudouuuuu 阅读(4) 评论(0) 推荐(0) 编辑