• (Note)C++数值标识符


    ConstantMeaningValue
    CHAR_BITNumber of bits in the smallest variable that is not a bit field.8
    SCHAR_MINMinimum value for a variable of type signed char.-128
    SCHAR_MAXMaximum value for a variable of type signed char.127
    UCHAR_MAXMaximum value for a variable of type unsigned char.255 (0xff)
    CHAR_MINMinimum value for a variable of type char.-128; 0 if /J option used
    CHAR_MAXMaximum value for a variable of type char.127; 255 if /J option used
    MB_LEN_MAXMaximum number of bytes in a multicharacter constant.5
    SHRT_MINMinimum value for a variable of type short.-32768
    SHRT_MAXMaximum value for a variable of type short.32767
    USHRT_MAXMaximum value for a variable of type unsigned short.65535 (0xffff)
    INT_MINMinimum value for a variable of type int.-2147483648
    INT_MAXMaximum value for a variable of type int.2147483647
    UINT_MAXMaximum value for a variable of type unsigned int.4294967295 (0xffffffff)
    LONG_MINMinimum value for a variable of type long.-2147483648
    LONG_MAXMaximum value for a variable of type long.2147483647
    ULONG_MAXMaximum value for a variable of type unsigned long.4294967295 (0xffffffff)
    LLONG_MINMinimum value for a variable of type long long.-9,223,372,036,854,775,807 - 1
    LLONG_MAXMaximum value for a variable of type long long.9,223,372,036,854,770,000
    ULLONG_MAXMaximum value for a variable of type unsigned long long.18,446,744,073,709,551,615 (0xffffffffffffffff)
  • 相关阅读:
    ETL基本介绍【博学谷学习记录】
    Linux--信号
    D. Xenia and Colorful Gems(二分+暴力)
    react native 毛玻璃效果
    React中父子组件参数传递讲解
    maven使用时候出现,jdk1.5的情况的解决办法
    thinkCMF6 更改站点信息注意事项
    shell脚本(一)环境变量
    基于springboot高校场馆预订系统
    钡铼EdgeIO边缘计算 I/O 控制器
  • 原文地址:https://blog.csdn.net/qq_40728667/article/details/127089720