标签:空间 reg default const 字母 其它 语句 ase double
2.1 c的关键字共有32个
char,short,int,long,float,double
unsigned,signed,struct,union,enum,void
if,else,switch,case,default
for,do,while,break,continue,goto,return
auto,extern,register,static,const
sizeof,typedef,volatile
2.2 数据类型
2.21 整形:int
打印格式 含义
%d 输出一个有符号的10进制int类型
%o 输出8进制的int类型
%x 输出16进制的int类型,字母以小写输出
%X 输出16进制的int类型,字母以大写输出
%u 输出一个10进制的无符号数
2.22 数据大小分配空间
数据类型 占用空间
short(短整形) 2字节
int(整形) 4字节
long(长整型) Windows为4字节,Linux为4字节(32位),8字节(64位)
long long(长整形) 8字节
标签:空间 reg default const 字母 其它 语句 ase double
原文地址:https://www.cnblogs.com/zjm1999/p/10300115.html