[C语言]Keyword List

类型说明保留字:

int、long、short、float、double、char、unsigned、signed、const、void、volatile、enum、struct、union

语句定义保留字:

if、else、goto、switch、case、do、while、for、continue、break、return、default、typedef

存储类说明保留字:

auto、register、extern、static

长度运算符保留字:

sizeof

C99新增关键字:

inline、restrict、_Bool、_Complex、_Imaginary

注意事项:

区分大小写

原文地址:https://www.cnblogs.com/LeeCookies/p/12769391.html