这个在Microsoft visual c++里为什么不能执行 error C2143: syntax error : missing ';' before 'type' error C2065: 'x' : undeclared identifier
你试试把外部的
extern int x; //调用外部变量
printf("x=%d\n",x);
int x=100;
删掉
检查代码,看是不是有少符号,或者是其他的错误有时也会说是少符号,全面检查