考试
2020-03-15 10:01:09

1451 下面程序的运行结果是void swap(int *

题目描述

下面程序的运行结果是void swap(int *a,int *b){ int *t; t=a;a=b;b=t;}main(){ int x=3,y=5,*p=



下面程序的运行结果是void swap(int *a,int *b){ int *t; t=a;a=b;b=t;}main(){ int x=3,y=5,*p=&x,*q=&y; swap(p,q); printf("%d%d
",*p,*q);}

答案解析

00****47 35观察本题

加载中...
AI正在思考中,请稍候...