extern用于声明全局变量(函数不需要)
main.h中声明extern int(如果没有uint类型,需要在main.c里面先包含main.h)
main.c里面具体实现int
要使用一样变量的,在其他.c里面包含main.h
C语言声明全局变量
2025/3/17
教程