摘要: void foo(int *p,int n){ int i; for(i=0;i<n;i++) { printf("%d\n",p[i]); //printf("%d\n",*(p+i)); }}void main(){ int a[10];... 阅读全文
posted @ 2015-09-19 09:59 微博和csdn还有你 阅读(435) 评论(0) 推荐(0) 编辑