请将以下程序的运行结果写在右侧空白处。
#include <stdio.h>
swap(int a,int B、
{
int temp;
temp=a;
a=b;
b=temp;
}
main()
int x=7,y=11;
printf(“x=%d,\ty=%d\n”,x,y);
printf(“swapped:\n”);
swap(x,y);
答案: <查看本题扣1积分>
查看答案
答案不对?请尝试站内搜索