首页 > 代码库 > 通过指针实现腿数组的遍历

通过指针实现腿数组的遍历

#include<stdio.h>

int main()

{

int number[10]={1,2,3,4,5,6,7,8,9,10};

int *ip;

ip=number;

for(int i=0;i<10;i++)

{

printf("%d\t",*number++);

}

}

 

 

技术分享

 

通过指针实现腿数组的遍历