c++整数分long int、 int、 char、 bool, 浮点数分float、 double、 long double, 试分别输出各类型的字节长度和位长,输出形式如:long int: 4 byte 32 bits
时间: 2024-06-03 18:10:16 浏览: 190
基本数据类型(/-c++ 数据类型、运算符与表达式
好的,我知道了。以下是各类型的字节长度和位长输出:
long int: 4 byte 32 bits
int: 4 byte 32 bits
char: 1 byte 8 bits
bool: 1 byte 8 bits
float: 4 byte 32 bits
double: 8 byte 64 bits
long double: 16 byte 128 bits
阅读全文