To rephrase and add
const int * my_pointer= h
Contents of my_pointer i.e. elements of h are constant.
int * const my_pointer = h
my_pointer is constant, but not the contents.
If you happen to see
const int * const my_pointer = h, both my_pointer and its contents are constant.
Use the variables in a program to understand better.