研:指針就是存有別的變量地址的變量

  #include "stdio.h" #include <iostream> using namespace std; void swap(int *a,int *b) { printf("--------------------------\n before swap: a:%d, b:%d \n",*a,*b); int temp; temp=*a; *a=*b; *b=tem
相關文章
相關標籤/搜索