二级指针的变量就是用来存放一级指针的地址
#include <stdio.h>
int main()
{
int a = 10;
int* p = &a;//p就是指针变量,是一级指针 p指向的类型是int
int* * pp = &p;//pp也是指针变量,是二级指针 pp指向的类型是int*
int*** ppp = &pp;//ppp也是指针变量,是三级指针
**pp = 20;
printf("%d ",a);
return 0;
}