char const*const variablename = " ";

what does it mean?

is it same as pointer declaration?

Please anyone explain.

Thank you in advance!

有帮助吗?

解决方案

It's a const pointer to a const C string. This means that neither the contents of the string, nor the pointer itself, can be changed.

其他提示

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

Applying this to your example, it's a const pointer to a const String.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top