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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0503.cpp
  3. // 栈区运动的演示程序
  4. //=====================================
  5. int funcA(int x, int y);
  6. void funcB(int& s);
  7. //-------------------------------------
  8. int main(){
  9.   int a=6, b=12;
  10.   a = funcA(a,b);
  11. }//------------------------------------
  12. int funcA(int x, int y){
  13.   int n=5;
  14.   funcB(n);
  15.   return n;
  16. }//------------------------------------
  17. void funcB(int& s){
  18.   int x=8;
  19.   s = x;
  20. }//====================================
  21.