您的位置: 首页 > 文章 > 共用体 共用体 分类: 文章 • 2024-03-11 13:54:19 union sample { short i; char ch; float f; }; typedef union sample SAMPLE; int main() { printf(“bytes=%d\n”,sizeof(SAMPLE)); return 0; }