常量指针:指向常量的指针,地址可变,内容不可变。eg:
const int *p; //或者是 int const *p;
指针常量:指针本身是常量,地址不可变,内容可变。eg:
int *const p;