天天看点

绕口令般的C指针:指向常量的常量指针的指针!!!

绕来绕去,终于绕出来了!!!!!!!!!!!!!!!!!

绕口令般的C指针:指向常量的常量指针的指针!!!

看代码: 

#include<stdio.h>
int main()
{
	const int num = 55;
	const int * const p = &num; //指向常量的常量指针 
	const int * const *pp = &p;//指向常量的常量指针的指针 
	printf("pp: %p, &p: %p\n",pp,&p); //一层解引用 
	printf("*pp: %p, p: %p, &num:%p\n",pp,p,&num);//二层解引用
	printf("**pp: %d, *p: %d, num:%d\n",**pp,*p,num);//三层解引用 
	return 0; 
}
           

结果:

绕口令般的C指针:指向常量的常量指针的指针!!!

继续阅读