const char *p;
*p = ...; // interdit p = ...; // ok
char * const p;
*p = ...; // ok p = ...; // interdit