题目内容
有以下程序#include void swap(int a,int b) { int t; t = a; a = b; b = t;} int main(){ int a = 1; int b = 2; swap(a,b); printf("%d,%d\n",a,b++); return 0;}程序运行后的输出结果是( )。
查看答案
搜索结果不匹配?点我反馈