2023年9月26日

字节对齐

摘要: #include <stdio.h> struct Example { int a; // 4 bytes char b[32]; // 32 bytes double c; // 8 bytes }; int main() { struct Example ex; printf("Size of 阅读全文
posted @ 2023-09-26 14:50 开源侠 阅读(4) 评论(0) 推荐(0) 编辑