如果变量在另一个源文件(.c)中定义,那么需要在此源文件中使用extern进行一次声明。比如数组定义为: struct student[MAX];那么在此文件中的声明为: extern struct student[MAX];
extern