填空题

#include<stdio.h>
int swap(int, int);
main()

int x=10, y=20;
swap(x,y)
printf("x=%d, y=%d", x, y);

int swap(int, int)

int temp;
temp=x;
x=y;
y=temp;

程序的运行结果是:

【参考答案】

程序的运行结果是:x=20,y=10