在C语言中,可以使用sizeof运算符来计算结构体的字节大小。例如,假设有以下结构体定义:
struct Person {
char name[20];
int age;
};
可以使用sizeof运算符来计算该结构体的字节大小:
#include <stdio.h>
struct Person {
char name[20];
int age;
};
int main() {
struct Person person;
printf("Size of struct Person: %d bytes\n", sizeof(struct Person));
return 0;
}
运行以上代码,将会输出该结构体的字节大小(在32位系统中通常为24字节,其中char数组的大小为20字节,int类型的大小为4字节)。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言中怎么合法转义字符