the following code can be compiled correctly on both VC or gcc:
char *str = "I am a const!";
str[2] = 'n';
however, obviously there is a run-time-error. Since "I am a const!" is a const char*, why the compiler doesn't give an error or even a warning ??
Besides, if I define char a[] = "I am const!", all the elements in a can be modified, why this time the string literals become nonconst ?
const char *s. (In C++ they're also notconst char *s. They're arrays, not pointers, and in one they'reconst.) – Chris Lutz Oct 2 '11 at 3:20-Wwrite-strings– Foo Bah Oct 2 '11 at 3:21-Wwrite-strings. gcc.gnu.org/onlinedocs/gcc/Warning-Options.html – Oscar Korz Oct 2 '11 at 5:57