C语言学习之二级指针&指针数组

c 复制代码
//第一种方式:
int a,b,c,d,e;
a = 11;
b = 22;
c = 33;
d = 44;
e = 55;
int *p[5] = {&a,&b,&c,&d,&e};
//第二种方式:
int a,b,c,d,e;
a = 11;
b = 22;
c = 33;
d = 44;
e = 55;
int *p[5] = {NULL};
p[0] = &a;
p[1] = &b;
p[2] = &c;
p[3] = &d;
p[4] = &e;
  • 取指针数组每个元素的值(即普通变量的地址):
c 复制代码
for(int i = 0; i < 5; i++){
	
	     printf("p[%d] = %p\n",i,p[i]);
	
	}
  • 取指针数组每个元素指向的地址空间的值(即普通变量的值):
c 复制代码
for(int j = 0; j < 5; j++){
	
	     printf("*p[%d] = %d\n",j,*p[j]);
	
	
	}
  • 对指针数组的每个元素进行取地址的操作(即每个元素的地址):
c 复制代码
for(int k = 0; k < 5; k++){
	
	     printf("&p[%d] = %p\n",k,&p[k]);
	
	}
  • 输出字符型指针数组中每个元素指向的字符串:
c 复制代码
char *s[5] = {"I","Love","Henan","and","Beijing"};

	for(int i = 0; i < 5; i++){

		printf("%s ",s[i]);
	
	}
  • 输出字符型数组存储的字符串:
c 复制代码
char s1[20] = "hellobeijng";
printf("%s\n",s1);
  • 输出字符型指针指向的字符串:
c 复制代码
char *s2 = "hihenan";
printf("%s\n",s2);
  • 测试代码:
c 复制代码
#include<stdio.h>

int main(int argc, const char *argv[])
{

	int a,b,c,d,e;
	a = 11;
	b = 22;
	c = 33;
	d = 44;
	e = 55;

	int *p[5] = {NULL};

	p[0] = &a;
	p[1] = &b;
	p[2] = &c;
	p[3] = &d;
	p[4] = &e;
    
	//int *p[5] = {&a,&b,&c,&d,&e};
	
	printf("指针数组占用内存空间的大小:%ld\n",sizeof(p));
	printf("指针数组元素的个数:%ld\n",sizeof(p)/sizeof(int *));
    
	printf("a = %d,&a = %p\n",a,&a);
	printf("b = %d,&b = %p\n",b,&b);
	printf("c = %d,&c = %p\n",c,&c);
	printf("d = %d,&d = %p\n",d,&d);
	printf("e = %d,&e = %p\n",e,&e);
	puts("");

	for(int i = 0; i < 5; i++){
	
	     printf("p[%d] = %p\n",i,p[i]);
	
	}
	puts("");

	for(int j = 0; j < 5; j++){
	
	     printf("*p[%d] = %d\n",j,*p[j]);
	
	
	}
	puts("");
	for(int k = 0; k < 5; k++){
	
	     printf("&p[%d] = %p\n",k,&p[k]);
	
	}
	puts("");

	char *s[5] = {"I","Love","Henan","and","Beijing"};

	for(int i = 0; i < 5; i++){


		printf("%s ",s[i]);
	
	
	
	}
	puts("");

	char s1[20] = "hellobeijng";
	printf("%s\n",s1);


	char *s2 = "hihenan";
	printf("%s\n",s2);

	return 0;
}
  • 运行结果:
c 复制代码
指针数组占用内存空间的大小:40
指针数组元素的个数:5
a = 11,&a = 0x7ffcb7f36f84
b = 22,&b = 0x7ffcb7f36f88
c = 33,&c = 0x7ffcb7f36f8c
d = 44,&d = 0x7ffcb7f36f90
e = 55,&e = 0x7ffcb7f36f94

p[0] = 0x7ffcb7f36f84
p[1] = 0x7ffcb7f36f88
p[2] = 0x7ffcb7f36f8c
p[3] = 0x7ffcb7f36f90
p[4] = 0x7ffcb7f36f94

*p[0] = 11
*p[1] = 22
*p[2] = 33
*p[3] = 44
*p[4] = 55

&p[0] = 0x7ffcb7f36fb0
&p[1] = 0x7ffcb7f36fb8
&p[2] = 0x7ffcb7f36fc0
&p[3] = 0x7ffcb7f36fc8
&p[4] = 0x7ffcb7f36fd0

I Love Henan and Beijing 
hellobeijng
hihenan
  • 二级指针&指针数组的关系:
  • 可以使用二级指针指向一个指针数组;
c 复制代码
数据类型*  指针数组名[元素个数];
数据类型*  *二级指针变量名;
  • 两者等价关系:
c 复制代码
指针数组名 <==> 二级指针变量名
  • 测试代码:
c 复制代码
#include<stdio.h>

int main(int argc, const char *argv[])
{
    int a = 11, b = 22, c = 33, d = 44, e = 55;
	int *p[5] = {&a,&b,&c,&d,&e};

	int **q = p;
	
	for(int i = 0; i < 5; i++){

        printf("q[%d] = %p\n",i,q[i]);
		printf("p[%d] = %p\n",i,p[i]);
	    printf("*(q + %d) = %p\n",i,*(q + i));
	    printf("*(p + %d) = %p\n",i,*(p + i));
	
	}
    puts("");

	for(int i = 0; i < 5; i++){


		printf("*q[%d] = %d\n",i,*q[i]);
		printf("*p[%d] = %d\n",i,*p[i]);
		printf("*(*(q + %d)) = %d\n",i,*(*(q + i)));
		printf("*(*(p + %d)) = %d\n",i,*(*(p + i)));
	
	
	
	
	}
    puts("");
    for(int i = 0; i < 5; i++){


		printf("&q[%d] = %p\n",i,&q[i]);
		printf("&p[%d] = %p\n",i,&p[i]);
		printf("q + %d = %p\n",i,q + i);
		printf("p + %d = %p\n",i,p + i);
	
	}


	return 0;
}
  • 运行结果:
c 复制代码
q[0] = 0x7ffd765009a8
p[0] = 0x7ffd765009a8
*(q + 0) = 0x7ffd765009a8
*(p + 0) = 0x7ffd765009a8
q[1] = 0x7ffd765009ac
p[1] = 0x7ffd765009ac
*(q + 1) = 0x7ffd765009ac
*(p + 1) = 0x7ffd765009ac
q[2] = 0x7ffd765009b0
p[2] = 0x7ffd765009b0
*(q + 2) = 0x7ffd765009b0
*(p + 2) = 0x7ffd765009b0
q[3] = 0x7ffd765009b4
p[3] = 0x7ffd765009b4
*(q + 3) = 0x7ffd765009b4
*(p + 3) = 0x7ffd765009b4
q[4] = 0x7ffd765009b8
p[4] = 0x7ffd765009b8
*(q + 4) = 0x7ffd765009b8
*(p + 4) = 0x7ffd765009b8

*q[0] = 11
*p[0] = 11
*(*(q + 0)) = 11
*(*(p + 0)) = 11
*q[1] = 22
*p[1] = 22
*(*(q + 1)) = 22
*(*(p + 1)) = 22
*q[2] = 33
*p[2] = 33
*(*(q + 2)) = 33
*(*(p + 2)) = 33
*q[3] = 44
*p[3] = 44
*(*(q + 3)) = 44
*(*(p + 3)) = 44
*q[4] = 55
*p[4] = 55
*(*(q + 4)) = 55
*(*(p + 4)) = 55

&q[0] = 0x7ffd765009d0
&p[0] = 0x7ffd765009d0
q + 0 = 0x7ffd765009d0
p + 0 = 0x7ffd765009d0
&q[1] = 0x7ffd765009d8
&p[1] = 0x7ffd765009d8
q + 1 = 0x7ffd765009d8
p + 1 = 0x7ffd765009d8
&q[2] = 0x7ffd765009e0
&p[2] = 0x7ffd765009e0
q + 2 = 0x7ffd765009e0
p + 2 = 0x7ffd765009e0
&q[3] = 0x7ffd765009e8
&p[3] = 0x7ffd765009e8
q + 3 = 0x7ffd765009e8
p + 3 = 0x7ffd765009e8
&q[4] = 0x7ffd765009f0
&p[4] = 0x7ffd765009f0
q + 4 = 0x7ffd765009f0
p + 4 = 0x7ffd765009f0
相关推荐
向阳逐梦40 分钟前
PID控制算法理论学习基础——单级PID控制
人工智能·算法
2zcode43 分钟前
基于Matlab多特征融合的可视化指纹识别系统
人工智能·算法·matlab
Owen_Q1 小时前
Leetcode百题斩-二分搜索
算法·leetcode·职场和发展
矢志航天的阿洪1 小时前
蒙特卡洛树搜索方法实践
算法
草莓熊Lotso2 小时前
【数据结构初阶】--顺序表(二)
c语言·数据结构·经验分享·其他
UnderTheTime2 小时前
2025 XYD Summer Camp 7.10 筛法
算法
zstar-_2 小时前
Claude code在Windows上的配置流程
笔记·算法·leetcode
圆头猫爹2 小时前
第34次CCF-CSP认证第4题,货物调度
c++·算法·动态规划
秋说2 小时前
【PTA数据结构 | C语言版】出栈序列的合法性
c语言·数据结构·算法
用户40315986396632 小时前
多窗口事件分发系统
java·算法