#extern3

C语言 extern3 全局变量的使用

和函数的全局使用极其类似:第一种方法,也是最简单的:在first.h中定义,intG_Flag=78;在对应的first.c中使用:#include"first.h"#include<stdio.h>voidmain(){printf("%d",G_Flag);} 第二种方法(复杂的):在seco...