C语言中如何定义全局变量

如题所述

第1个回答  2012-05-16
举个例子
#include<stdio.h>
int a =0;//这里不就是定义了一个全局变量a了吗

int main()
{

printf("%d",a);

}
相似回答