Ex3_11_1.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //【例3.11】外部存储类型的例子。假定程序包含两个源程序文件Ex3_11_1.cpp和Ex3_11_2.cpp,程序结构如下:
  2. /* Ex3_11_1.cpp ,由main()组成*/
  3. # include <iostream>
  4. using namespace std;
  5. void fun2(); //外部函数声明,等价于extern void fun2();
  6. int n; //全局变量定义
  7. int main(){
  8. n=1;
  9. fun2(); // fun2()定义在文件Ex3_11_2.cpp中
  10. cout<<"n="<<n<<endl;
  11. return 0;
  12. }