关于指针:’char const * const c =“”’是什么意思

What is mean by 'char const * const c=“ ” '

本问题已经有最佳答案,请猛点这里访问。
1
char const*const variablename ="";

这是什么意思?

它与指针声明相同吗?

请任何人解释。

提前谢谢!


它是指向constC字符串的const指针。这意味着既不能更改字符串的内容,也不能更改指针本身。


const protects his left side, unless there is nothing to his left and
only then it protects his right side.

在您的示例中,它是指向constStringconst指针。