摘要: #include<stdio.h> int main() {int a[9]={1,2,3,4,5,6,7,8,9};//定义一个数组a[9],学号尾数5+4=9 int*p=a,i;//定义一个指针p for(i=0;i<9;i++)//运用for循环对数组遍历 {printf("%d\n",*p 阅读全文
posted @ 2017-03-18 21:41 陈怡婷 阅读(82) 评论(0) 推荐(0) 编辑