int x;int y;};定义结构体变量s的文件b.c include "c.h"struct STU s; /* 不加extern ,默认认为extern */ a.c 调用b.c里定义的全局变量s include <stdio.h> include "c.h" /* struct STU这个类型的定义(或者说声明)在这个头文件里 */ extern struct STU s;/* 声明它是外部的...