题目内容
#includevoid fun(int *x,int *y){printf("%d,%d\n",*x,*y);*x=3;*y=4;}void main(){int x=1,y=2;fun(&x,&y);printf("%d,%d\n",x,y);}
查看答案
搜索结果不匹配?点我反馈