指向指针的指针
示例
int main(void) {int num = 123;int *ptr;int **pptr;ptr = #pptr = &ptr;printf("\n num=%d", num);printf("\n &num=%p", &num);printf("\n ptr=%p", ptr);printf("\n *ptr=%d", *ptr);printf("\n &ptr=%p", &ptr);printf("\n pptr=%p", pptr);printf("\n *pptr=%p", *pptr);printf("\n &pptr=%p", &pptr);printf("\n **pptr=%d", **pptr);return 0;}

