在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各占多少个字节的主要内容,如果未能解决你的问题,请参考以下文章