标签:
void Swap(int *a, int *b) { int c = *a; *a = *b; *b = c; }
两个数交换
原文地址:http://www.cnblogs.com/liuhg/p/swap.html