回首已是千年
2016-03-23 18:22
#include <stdio.h>
void fn()
{
static int x = 1; //定义静态局部变量
x*=2;
printf("x=%d\n",x);
}
int main()
{
int i;
for(i=0;i<5;i++)
{
fn();
}
extern int x; //调用外部变量
printf("x=%d\n",x);
return 0;
}
int x=100;
这程序在Visual C++里为什么执行不了?
完全没问题,结果如下:
x=2
x=4
x=8
x=16
x=32
x=100
Press any key to continue
因为VC++这个编译器不可以又声明又赋值 第四行 static int ; x=1;这样就可以了 ,
C语言入门
926021 学习 · 20793 问题
相似问题