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 ?

link|improve this question

3  
Because in C, string literals are not (as you assert) const char *s. (In C++ they're also not const char *s. They're arrays, not pointers, and in one they're const.) – Chris Lutz Oct 2 '11 at 3:20
What compiler are you using? In gcc, set the warning flag -Wwrite-strings – Foo Bah Oct 2 '11 at 3:21
sorry, but on my redhat, gcc prompts "cc1: unrecognized option `-Wfixed-strings' " – Flybywind Oct 2 '11 at 3:31
@Flybywind ooh was unaware -- you may need to update GCC :P – Foo Bah Oct 2 '11 at 3:32
2  
The flag is -Wwrite-strings. gcc.gnu.org/onlinedocs/gcc/Warning-Options.html – Oscar Korz Oct 2 '11 at 5:57
show 2 more comments
feedback

1 Answer

up vote 11 down vote accepted

As far as C is concerned, that string literal is not const, it's a char[14] which you assign to a char*, which is perfectly fine.

However, C does say that changing a string literal is undefined behavior.

link|improve this answer
1  
+1 but it should be noted that the confusion probably comes from C++, where string literals are const. – Chris Lutz Oct 2 '11 at 3:57
I still can't understand, since the string literals are just char[], not const, then why I can't change the value ? – Flybywind Oct 2 '11 at 6:59
3  
@Flybywind: Because the language says so. The specification of C language clearly says that string literals are not modifiable, even though they are not const. – AndreyT Oct 2 '11 at 7:17
It's because const was backported to C from C++. String literals were immutable before const was invented. – Oscar Korz Oct 2 '11 at 16:06
1  
@Flybywind: In that case, it is because the string literal is an array initializer. It is equivalent to char a[] = { 'I', ' ', 'a', 'm'... – Dietrich Epp Oct 3 '11 at 0:25
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.