在CC++中char short int各占多少个字节

Posted GetcharZp

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在CC++中char short int各占多少个字节相关的知识,希望对你有一定的参考价值。

在C\C++中char 、short 、int各占多少个字节 :

#include <bits/stdc++.h>

using namespace std;

int main()
{
    cout <<sizeof(char) <<endl;
    cout <<sizeof(short) <<endl;
    cout <<sizeof(int) <<endl;
    // 输出结果依次是1、2、4
}

 

以上是关于在CC++中char short int各占多少个字节的主要内容,如果未能解决你的问题,请参考以下文章

intcharlong各占多少字节数

char、int、long它们各占几个字节?占几位?

Java中char,short,int,long占几个字节和多少位

JAVA有哪些数据类型?基本数据类型各占多少个字节

2017-1-11

JAVA面试必备的知识宝典