int占两个字节 char占几个字节(如何用程序表达int占多少个字节)

int占两个字节 char占几个字节(如何用程序表达int占多少个字节)

首页维修大全综合更新时间:2024-06-13 15:57:20

int占两个字节 char占几个字节

char :1个字节;

在计算机中 char*(即指针变量):4个字节(32位的寻址空间是2^32, 即32个bit,也就是4个字节。同理64位编译器);

short int:2个字节;

 int:4个字节;    

unsigned int :4个字;  

 float: 4个字节;  

 double:8个字节;  

 long:4个字节;    

long long:8个字节;  

 unsigned long: 4个字节

大家还看了
也许喜欢
更多栏目

© 2021 3dmxku.com,All Rights Reserved.