C的关键字:
- 数据类型关键字: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
数据类型
- 基本类型:int、short、long、char、float、double
- 构造类型:数组、结构体(struct)、共用体(union)、枚举(enum)
- 指针类型:char *、int *、int **等
C语言高级编程
原文:http://www.cnblogs.com/lemongirl/p/7843731.html