如何在c语言中定义及引用全局变量?

如题所述

第1个回答  2019-06-01
举个例子
#include
int
a
=0;//这里不就是定义了一个全局变量a了吗
int
main()
{
printf("%d",a);
}
相似回答