Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 1.04 KB

61.md

File metadata and controls

41 lines (29 loc) · 1.04 KB

C++ 程序:在系统中查找intfloatdoublechar的大小

原文: https://www.programiz.com/cpp-programming/examples/sizeof-operator

他的程序声明了 4 个类型为intfloatdoublechar的变量。 然后,使用sizeof运算符求值每个变量的大小。

要查找变量的大小,请使用sizeof运算符。

sizeof(dataType);

示例:查找变量的大小

#include <iostream>
using namespace std;

int main() 
{    
    cout << "Size of char: " << sizeof(char) << " byte" << endl;
    cout << "Size of int: " << sizeof(int) << " bytes" << endl;
    cout << "Size of float: " << sizeof(float) << " bytes" << endl;
    cout << "Size of double: " << sizeof(double) << " bytes" << endl;

    return 0;
}

输出

Size of char: 1 byte
Size of int: 4 bytes
Size of float: 4 bytes
Size of double: 8 bytes

注意:如果使用的是旧计算机,则可能会得到不同的结果。