问题 更新时间2023/12/31 18:20:00 在线试题20上有以下程序#include “stdio.h”void swap(int *x,int *y){ int t;t=*x; *x=*y; *y=t;printf(“%d %d”,*x,*y); }main(){ int a=3,b=5,*p1,*p2; p1=&a;p2=&b;swap(p1,p2);printf(“%d %d”,a,b); }程序段的输出结果是( )·5 3 5 3·5 3 3 5·3 5 5 3·3 5 3 5 答案 登录 注册 单选题·5 3 5 3 出自:青书学堂 >> 延安大学PowerPoint 图文演示技术