-4

bool:1 字节
char:1 字节
short:2 字节
int:4 字节
long:8 字节
float:4 字节
double:8 字节
long double:16 字节
unsigned int:8 字节
unsigned char:1 字节
long int:8 字节
short int :2字节
有符号字符: 1字节

4

2 回答 2

5

为什么不自己尝试一下

float a[100];
char* b[100];
printf("size of 100 floats = %zu\n", sizeof(a));
printf("size of 100 char pointers = %zu\n", sizeof(b));
于 2013-01-03T19:54:22.487 回答
1

你只需要使用sizeof()运算符。

参见维基百科

于 2013-01-03T19:54:33.630 回答