![]() |
#2
veketdelphi2013-07-29 07:44
|

#include<iostream>
using namespace std;
int main(){extern int c;
int c=1;
cout<<c;
return 0;
}
using namespace std;
int main(){extern int c;
int c=1;
cout<<c;
return 0;
}
但是这样把extern放在主函数里面是不允许的吗,