常见关键
C语言提供了丰富的关键字,这些关键字都是语言本身预先设定好的,用户自己是不能创造关键字
while for goto if else switch case default break continue
char short int float long double unsigned(无符号) signed(有符号)
void return const do while sizeof
auto enum(枚举) extern(声明) register(寄存器)
static(静态修饰) struct(结构体) typedef(类型重定义) union(联合体) volatile
1. 关键字 typedef
typedef 顾名思义是类型定义,这里应该理解为类型重命名。
将unsigned int 重命名为shi_1, 所以shi_1也是一个类型名
typedef unsigned int shu_1;
int main()
{
unsigned int num1 = 0; 这里的num1和num2这两个变量的类型是一样的
shi_1 num2 = 0; 这两个变量的类型是一样的
return 0;
}
<