c語言8位元組
發布時間: 2025-01-13 02:38:51
㈠ C語言中 int long float double分別佔用了多少個位元組
char/signed char/unsigned char: 1個位元組;
char*(即指針變數):
2個位元組(16位編譯器)
4個位元組(32位編譯器)
8個位元組(64位編譯器)
short int: 2個位元組
int/unsigned int:
2個位元組(16位編譯器)
4個位元組(32/64位編譯器)
long int: 4個位元組
float: 4個位元組
double: 8個位元組
long double: 8/10/12/16?
long/unsigned long:
4個位元組(16/32位編譯器)
8個位元組(64位編譯器)
long long: 8個位元組
string: 字元個數+1
上面的只是參考,具體的長度你可以在你的編譯器中使用sizeof關鍵字分別求出來。
熱點內容