摘要: #include <stdio.h> int a[5]={ 7,2,9,10,3 }; void st(int *,int); void main() { int i; st(a,5); for(i=0;i<5;i++) printf("%4d",a[i]); printf("\n"); } voi 阅读全文
posted @ 2020-07-26 09:12 attendere 阅读(644) 评论(0) 推荐(0) 编辑