...
In this compliant solution, the characters referred to by the pointer c
are const
-qualified, meaning that any attempts to assign them to different values is an error.
Code Block | ||
---|---|---|
| ||
const wchar_t const *c = L"Hello"; |
Compliant Solution (mutable strings)
...