C++获取数据类型字节数和范围

例如int型

#include<iostream>
#include<cstdio>
#include<climits>
using namespace std;
int main()
{
    printf("%d\n",sizeof(int));
    printf("%d\n",INT_MAX);
    printf("%d\n",INT_MIN);
};

注意要用头文件limits获取数据类型范围
以下为各数据类型界限符
有符号整数类型:
char:CHAR_MIN、CHAR_MAX
short:SHRT_MIN、SHRT_MAX
int:INT_MIN、INT_MAX
long:LONG_MIN、LONG_MAX
long long:LLONG_MIN、LLONG_MAX
无符号整数类型:
unsigned char:0、UCHAR_MAX
unsigned short:0、USHRT_MAX
unsigned int:0、UINT_MAX
unsigned long:0、ULONG_MAX
unsigned long long:0、ULLONG_MAX
浮点型类型:
float:FLT_MIN、FLT_MAX
double:DBL_MIN、DBL_MAX
long double:LDBL_MIN、LDBL_MAX