質問

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