int x = 7; // 변수의 선언 int *ptr = &x; // 포인터의 선언 int **pptr = &ptr; // 포인터의 참조
출처 http://www.tcpschool.com/cpp/cpp_arrayPointer_pointerIntro