摘要: #include<stdio.h> void swap(int *p,int *q) { int t; t=*p; *p=*q; *q=t; } main() { int a=5,b=4,*p,*q; p=&a; q=&b; swap(p,q); printf("a=%d b=%d",a,b); r 阅读全文
posted @ 2017-03-21 22:51 李胡仪 阅读(1683) 评论(2) 推荐(0) 编辑