Possible Duplicate:
What is the difference between const int*, const int * const, and int const *?
const int = int const?
What's the difference between the following three?
vector<int const *> f() { ... }
vector<const int *> g() { ... }
vector<int * const> h() { ... }