赞
踩
//利用指针使ab值交换
void swap(int *p1,int *p2) { int tmp; tmp=*p1; *p1=*p2; *p2=tmp; } int main() { int a=10; int b=20; swap(&a,&b); //void类型不用返回值 }