ch5_1.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch5_1.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. int func1();
  6. int func2();
  7. void main()
  8. {
  9.   func1();
  10.   cout <<func2() <<endl;
  11. }
  12. int func1()
  13. {
  14.   int n=12345;
  15.   return n;
  16. }
  17. int func2()
  18. {
  19.   int m;
  20.   return m;    //warning:possible use of 'm' before definition
  21. }