通过海量题库、编程比赛和实时排名,系统化提升您的编程能力。
阅读程序,写出程序运行结果。
#include <stdio.h> void swap(int *x, int *y) { int *t; t=x; x=y; y=t; } void main(void) { int x=12, y=63; swap(&x, &y); printf("%d,%d", x, y); }