const 常量: 如:const int a = 20; 不能做左值
char 字符型 一个字节
int 长整型 四个字节
short 短整型 两个字节
struct 结构体声明
union 声明共用体数据类型
typedef 声明类型别名
unsigned 声明无符号类型变量
const 常量: 如:const int a = 20; 不能做左值
char 字符型 一个字节
int 长整型 四个字节
short 短整型 两个字节
struct 结构体声明
union 声明共用体数据类型
typedef 声明类型别名
unsigned 声明无符号类型变量