void foo(int *const x);
If you point x to another adress inside foo function, it will not compiled.The author seems think that
void foo(cont int *x);
is function that takes a constant pointer which is wrong, it is a function that takes pointer to constant object. In this case, it is legal if you point x to another address in memory inside foo function.