标签:
交换 int a, int b: | 交换 int *p, int *q 的地址
void ( int *a, int *b) | void( int **p, int **q)
{ | {
int temp ; | int *temp;
temp = *a; | temp = *p;
*a = *b; | *p = *q;
*b = temp; | *q = temp;
return ; | return ;
} | }
|
标签:
原文地址:http://www.cnblogs.com/yongjiuzhizhen/p/4339917.html