C語言中輸出字節數的方法是使用sizeof
運算符。sizeof
運算符返回指定類型或變量的大小,單位為字節。
以下是使用sizeof
運算符輸出字節數的示例代碼:
#include <stdio.h>
int main() {
int num;
float f;
char c;
double d;
printf("Size of int: %zu bytes\n", sizeof(num));
printf("Size of float: %zu bytes\n", sizeof(f));
printf("Size of char: %zu bytes\n", sizeof(c));
printf("Size of double: %zu bytes\n", sizeof(d));
return 0;
}
輸出結果:
Size of int: 4 bytes
Size of float: 4 bytes
Size of char: 1 byte
Size of double: 8 bytes
注意:sizeof
運算符的結果類型是size_t
,使用%zu
格式說明符進行打印。