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
相关推荐
xiaoyaolangwj17 分钟前
高翔【自动驾驶与机器人中的SLAM技术】学习笔记(十三)图优化SLAM的本质
学习·机器人·自动驾驶
静止了所有花开1 小时前
SpringMVC学习笔记(二)
笔记·学习
爱吃生蚝的于勒1 小时前
C语言内存函数
c语言·开发语言·数据结构·c++·学习·算法
L_cl3 小时前
Python学习从0到1 day26 第三阶段 Spark ④ 数据输出
学习
Mephisto.java4 小时前
【大数据学习 | HBASE】hbase的读数据流程与hbase读取数据
大数据·学习·hbase
失落的香蕉4 小时前
C语言串讲-2之指针和结构体
java·c语言·开发语言
红中马喽4 小时前
JS学习日记(webAPI—DOM)
开发语言·前端·javascript·笔记·vscode·学习
尘浮生6 小时前
Java项目实战II基于微信小程序的移动学习平台的设计与实现(开发文档+数据库+源码)
java·开发语言·数据库·spring boot·学习·微信小程序·小程序
Young_202202026 小时前
学习笔记——KMP
笔记·学习
ChoSeitaku7 小时前
链表循环及差集相关算法题|判断循环双链表是否对称|两循环单链表合并成循环链表|使双向循环链表有序|单循环链表改双向循环链表|两链表的差集(C)
c语言·算法·链表