Listing B
int n=10, m=0;
int *const pci = &n; // pci is a const pointer to int
pci++; // error, trying to modify a const pointer
pci= &m; // also an error
*pci=9; //OK