这道题等你好久了!
输入两个数字,要求你在自定义函数中完成两个数字的交换,输出交换后的两个数字
C语言自定义函数为 int swap(int *a,int *b);
C++自定义函数为 int swap(int &a,int &b);
10 20
20 10