C語言基本變數長度

來源:互聯網
上載者:User

C語言的基礎資料型別 (Elementary Data Type)有以下幾個:

int  整型
char 字元型
float 單精確度浮點型
double 雙精確度浮點型
另外,在基礎資料型別 (Elementary Data Type)基礎上附加一些限定詞,得到擴充的資料類型。short,long可以應用到整,unsigned可以應用到整型和字元型。

short int(或short)短整型
long int(或long)長整型
unsigned int 無符號整型
unsigned short 無符號短整型
unsigned long 無符號長整型
unsigned char 無符號字元型

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/unsigned long,依賴於編譯器

4個位元組(16/32位編譯器)
8個位元組(64位編譯器)


long long: 8個位元組
string長度:字元個數+1

 

資料類型

16bit編譯器(位元組)

32bit編譯器(位元組)

64bit編譯器(位元組)

char

1

1

1

short int

2

2

2

int

2

4

4

long

4

4

8

float

4

4

4

double

8

8

8

Char *(指標類型)

2

4

8

 

綜上,從32bit升級至64bit時,long和指標類型所佔的位元組數將發生變化。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.