#include <stdio.h> int a=2,k=7; void fun() {a=3,k=4;} main () { int a=1,k=1; /* 这行去掉之后再运行一次,区分。*/ fun(a,k); printf("%d,%d",a,k); return 0; }