(1) const int *p;
(2) int *const p;
(3) int const *p;

(1) は const int なので、*p が read only になる。
(2) は *const なので、p が read only になる。
(3) は (1) と同じ。