什么是关键字?
C语言是由英语单词构成的,其中有些单词被赋予了特殊的含义,那么这些英语单词就是关键字
关键字就像十八般武器一样,每个有每个的作用,是学好C语言的关键
C语言系统提供的32个关键字:
nauto double int struct break
n else long switch case enum
nregister typedef char extern return
n union const float short unsigned
ncontinue for signed void default
n goto sizeof volatile do if
n while static
注意:不需要特别记住,用多了就会,在编译器里都是有特殊颜色
C语言:关键字
原文:http://www.cnblogs.com/qianbi123/p/4066288.html