Both GCC and Clang do not complain if I assign a string literal to a char*, even when using lots of pedantic options (-Wall -W -pedantic -std=c99):

char *foo = "bar";

while they (of course) do complain if I assign a const char* to a char*.

Does this mean that string literals are considered to be of char* type? Shouldn't they be const char*? It's not defined behavior if they get modified!

And (an uncorrelated question) what about command line parameters (ie: argv): is it considered to be an array of string literals?

link|improve this question

If you want it to raise a warning, use -Wwrite-strings. The equivalent is set in g++ – marcog Dec 20 '10 at 19:38
feedback

6 Answers

up vote 7 down vote accepted

They are of type char[N] where N is the number of characters including the terminating \0. So yes you can assign them to char*, but you still cannot write to them (the effect will be undefined).

Wrt argv: It points to an array of pointers to strings. Those strings are explicitly modifiable. You can change them and they are required to hold the last stored value.

link|improve this answer
5  
+1 -- note that that is their type, but you must treat them as if they were const (or the undefined behavior/access violation fairy will pay you a visit) – Billy ONeal Dec 20 '10 at 19:34
1  
@Billy: don't you see this as somehow inconsistent? Otherwise the OP wouldn't need to ask the question at all. – Vlad Dec 20 '10 at 19:36
2  
@Vlad: It was left as non- const in order to maintain compatibility with C89, which does not have const. – Billy ONeal Dec 20 '10 at 19:38
2  
@Vlad: I didn't write the standard(s) :P – Billy ONeal Dec 20 '10 at 19:42
4  
C had const since C89. It wasn't added to C99. – Johannes Schaub - litb Dec 20 '10 at 20:13
show 4 more comments
feedback

In both C89 and C99, string literals are of type char * (for historical reasons, as I understand it). You are correct that trying to modify one results in undefined behavior. GCC has a specific warning flag, -Wwrite-strings (which is not part of -Wall), that will warn you if you try to do so.

As for argv, the arguments are copied into your program's address space, and can safely be modified in your main() function.

EDIT: Whoops, had -Wno-write-strings copied by accident. Updated with the correct (positive) form of the warning flag.

link|improve this answer
String literals are array types (char [N]), not pointer types (char *); refer to 6.4.5 String Literals in n1256. – John Bode Dec 20 '10 at 22:16
feedback

Johannes' answer is correct concerning the type and contents. But in addition to that, yes, it is undefined behavior to modify contents of a string literal.

Concerning your question about argv:

The parameters argc and argv and the strings pointed to by the argv array shall be modifiable by the program, and retain their last-stored values between program startup and program termination.

link|improve this answer
feedback

Using -Wwrite-strings option you will get:

warning: initialization discards qualifiers from pointer target type

Irrespective of that option, GCC will put literals into read-only memory section, unless told otherwise by using -fwritable-strings (however this option has been removed from recent GCC versions).

Command line parameters are not const, they typically live on the stack.

link|improve this answer
feedback

They are const char*, but there is a specific exclusion for assigning them to char* for legacy code that existed before const did. And the command line arguments are definitely not literal, they are created at run-time.

link|improve this answer
feedback

String literals have formal type char [] but semantic type const char []. The purists hate it but this is generally useful and harmless, except for bringing lots of newbies to SO with "WHY IS MY PROGRAM CRASHING?!?!" questions.

link|improve this answer
Makes me curious, do you have an example for this being useful? I mean beyond this backwards compatibility idea, which I guess is less and less relevant? – Jens Gustedt Dec 20 '10 at 22:42
Sometimes you want a char * instead of a const char * for iterating over a string, especially if you'll be passing a pointer to it to a function like strtol. It's less a matter of backwards compatibility and more a matter of const sometimes being a pain. Of course most of the time in cases like this I have to deal with non-literal strings too and just cast away the const... – R.. Dec 21 '10 at 2:52
feedback

Your Answer

 
or
required, but never shown

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