#include<stdio.h>
#include<stdlib.h>
void main()
{
//数组指针的用法,用处。
int b[16]={1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
int (*p)[4]; //该语句是定义一个数组指针,指针步长为4个int即16位。
//int *p2=b;
p=b;
int i=0;
while(i<16)
{
printf("%d\t",(*p)[i]);
//printf("%d\t",*p2++);
i++;
}
}
`
#include <stdio.h>
int main ()
{
char a[5][10]={"hello","world","I","am","coming"};
char (*p)[10]=a;
for (int i=0; i<5; i++)
{
printf("%s\n",p[i]);
}
printf("\n");
}
数组指针的使用
最新推荐文章于 2024-09-06 09:43:28 发布