1 //程序4-5 2 #include <stdio.h> 3 void swap(int* a, int* b) 4 { 5 int t = *a; *a = *b; *b = t; //*a是指“a指向的变量”,而不仅是“a指向的变量所拥有的值” 6 } 7 8 int main() 9 { 10 int a =3, b = 4; 11 swap(&a, &b); 12 printf("%d %d\n", a, b); 13 return 0; 14 }
亲爱的读者:如果觉得本文对你有所帮助,请点击推荐,分享给其他人!