I had the same doubt as you until I came across this book by the C++ Guru Scott Meyers. Refer the third Item in this book where he talks in details about using const
.
Just follow this advice
const
appears to the left of the asterisk, what's pointed to is constantconst
appears to the right of the asterisk, the pointer itself is constantconst
appears on both sides, both are constant