Reading right to left, what does const char* const p declare?
- A A constant pointer to constant characters
- B A pointer to constant characters that can be reseated
- C A constant pointer to modifiable characters
- D A reference to a character array
Answer
A constant pointer to constant characters
The first const applies to the pointed-to data and the second to the pointer itself, so neither the data nor the pointer may change.





