常见关键字
auto break case char const continue default do double else enum extern float for goto if int long register return short signed sizeof static struct switch typedef union unsigned void volatile while
c语言提供的关键字
1.c语言提供的,不能自己创建关键字
2.变量名不能是关键字
auto
auto int (可省略)
自动创建,自动销毁--自动变量
const 长变量
extern 用来申明外部符号的
register 寄存器关键词
register int mun=1000; 建议num存放在寄存器中
signed 有符号的 10 ,-10 相当于有正负
unsigned 无符号的
static静态的!
union联合体(共用体)
void无-空
typedef 类型定义
//类型重定义 换个名字的意思
typedef unsigned int u_int;
int main()
{
//unsigned int num = 100;
u_int num = 100;
printf("%d\n", num);
return 0;
}
static 静态的
1修饰局部变量
void test()
{
int a = 1;//2 2 2 2 2 2 2 2 2 2
//static int a= 1;//2 3 4 5 6 7 8 9 10 11
//改变了局部变量的生命周期(本质上改变了变量的存储类型)原来要销毁,现在不要
a++;
printf("%d", a);
}
int main()
{
int i = 0;
while (i < 10)
{
test();
i++;
}
return 0;
}
2修饰全局变量
3修饰函数
define include 不是关键词//是预处理指令