const
When unwinding const declarations, read from right to left.
const char *p;
const char
char * const p;
char
In this case, it is p itself, not its contents, that are const.
p