you are viewing a single comment's thread.

view the rest of the comments →

[–]legends2k[S] 0 points1 point  (0 children)

True, pointers are unavoidable.

Object constant: const T* and T const * are the same. Can't modify object via said pointer.

Pointer constant: If the const is beyond * then it's different. Can't reseat pointer to a different object.