What's the point of const pointers?

后端 未结 17 1918
粉色の甜心
粉色の甜心 2020-11-30 17:28

I\'m not talking about pointers to const values, but const pointers themselves.

I\'m learning C and C++ beyond the very basic stuff and just until today I realized t

17条回答
  •  醉酒成梦
    2020-11-30 17:41

    I believe this would prevent code from incrementing or decrementing the pointer within the function body.

提交回复
热议问题