指針變量訪問

賦值交換; #include <stdio.h> void Swap_err1(int a,int b) { int tmp ; tmp = a; a = b; b = tmp; //printf("%d,%d\n",a,b); } 訪問地址交換; void Swap_err2(int *p1,int *p2) { int *tmp; tmp = p1; p1 = p2; p2 = tmp; }
相關文章
相關標籤/搜索