Linux C使結構體字節對齊的兩種方法

未對齊時的結構體大小 #include <stdio.h> #include <stdint.h> struct aa { uint8_t a; uint16_t b; uint8_t c; }; int main(int argc, char **argv) { printf("struct size=%d\n", sizeof(struct aa)); }
相關文章
相關標籤/搜索