您的位置:首页 > 编程语言 > C语言/C++

【ThinkingInC++】8、说明符,探讨数据类型的大小

2014-08-10 11:01 369 查看
/**
* 功能:说明符,探讨数据类型的大小
* 时间:2014年8月10日11:02:02
* 作者:cutter_point
*/

#include<iostream>

using namespace std;

int main()
{
    char c;
    unsigned char cu;
    short int is;
    short iis;
    unsigned short int isu;
    unsigned short iisu;
    int i;
    unsigned int iu;
    long int il;
    long iil;
    unsigned long int ilu;
    unsigned long iilu;
    float f;
    double d;
    long double ld;

    cout
        <<"\n char= "<<sizeof(c)
        <<"\n unsigned= "<<sizeof(cu)
        <<"\n short int= "<<sizeof(is)
        <<"\n short= "<<sizeof(iis)
        <<"\n unsigned short int= "<<sizeof(isu)
        <<"\n unsigned short= "<<sizeof(iisu)
        <<"\n int= "<<sizeof(i)
        <<"\n unsigned int= "<<sizeof(iu)
        <<"\n long int= "<<sizeof(il)
        <<"\n long= "<<sizeof(iil)
        <<"\n unsigned long int= "<<sizeof(ilu)
        <<"\n unsigned long= "<<sizeof(iilu)
        <<"\n float= "<<sizeof(f)
        <<"\n double= "<<sizeof(d)
        <<"\n long double= "<<sizeof(ld)
        <<endl;

    return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: