首页 > 代码库 > 编程题:局部变量的使用。

编程题:局部变量的使用。

编程题:局部变量的使用。

#include<stdio.h>

void f2(int x,int y)

{x++;y++;}

void f1(int x,int y)

{ int n=0,m=1;

  f2(x,y);

  printf("n=%d,x=%d,y=%d\n",n,x,y);

}

void main()

{ int n=2,a=3,b=4;

  f1(a,b);

  printf("n=%d,a=%d,b=%d\n",n,a,b);

}

编程题:局部变量的使用。 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413798