char amessage[] = "now is the time"; /* an array */
char *pmessage = "now is the time"; /* a pointer */
|
|
||||
|
|
|||||||
|
|
In addition to James McNellis's answer, On the other hand, (In some sense, this is not entirely true -- |
|||
|
|
|
if you are using GCC, turn on -Wwrite-strings. fixed strings are of type const char[length_of_string], and the conversion to a char * will elicit a warning [needs to be const]. The first assignment is a character array assignment, whereas the second assignment is a pointer-based assignment (and the resulting string is held as a fixed string) The first assignment is acceptable as-is, whereas the second one requires a const qualifier. In the first assignment, changing a point is acceptable (e.g. amessage[3] = 'q'). in the second assignment, changing a point is unacceptable (since the string is const ) -- you should get a bus error |
|||
|
|
In C the thing to the left of '=' is termed an 'lvalue'. The type is defined solely by the 'lvalue'. So 'amessage' is a char array. 'pmessage' is a pointer to a char. In C more goes on in relation to what is equivalent between array type & 'char *' accesses, and also what is not. As declared 'pmessage' is a modifiable 'lvalue' - 'amessage' is not modifiable. Hence the advise to declare 'pmessage' as const as really it should not be modifiable also. E.g.
In terms of memory access 'amessage' results in a direct access, whereas 'pmessage' requires a dereference. Note: the C compiler only permits initialisation of 'char *' at compile time via a string literal. E.g. If you had
Line 4 makes no sense & would be illegal. Highly recommend Peter Van Linden's 'Deep C Secrets' which he has a whole chapter about C arrays & pointers. |
|||||
|
amessage = pmessagev.s.pmessage = amessage– Peyman Feb 11 '11 at 6:53