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

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

#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.


你可能感兴趣的:(C语言)