#include<stdio.h>
void test()//void是无类型的意思,可以表达出任意类型的数
{
static int a=1;//static修饰局部变量,将a变成一个静态的局部变量;若没有static,a每运行一次后就会舍弃,重新从a计算
a++;
printf("a=%d\n",a);
}
main()
{
int b=0;
while(b<5)
{
test();
b++;
}
}
//static修饰全局变量时,同一工程中不能引用被static修饰的变量
//extern是声明外部变量的extern int a
//extern int add(int,int)
标签:int,void,test,static,extern,修饰 From: https://blog.51cto.com/u_16330158/8239962