1. 声明的语法声明的语法格式是:声明说明符 声明符 例如:
extern const unsigned long int a[10]; 前面部分extern const unsigned long int为声明说明符 后面a[]为声明符
声明说明符分为三类:
存储类型:4个 auto、static、extern和register
类型限定符:两个const和volatile
类型说明符:基本类型int、float、double、char等和struct、union、enum等。
声明符有简单的变量标示符、数组([]结尾)、指针(*打头)和函数(()结尾)。
extern const unsigned long int a[10];

上面的语句中extern为存储类型、const为类型限定符、unsigned long int为类型说明、 a[]为声明符

该博客教程视频地址:http://geek99.com/node/1033

原文出处:http://geek99.com/node/890#