Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The happily simple state of conversions that holds for pointer to const does not hold in the case of pointer to pointer to const. Consider an attempt to convert a pointer to a pointer to a char to a pointer to a pointer to a const char (that is, to convert char ** to const char **):
char **ppc;
const char **ppcc = ppc; // error!