I thought that pointers can only hold addresses to other variables. So how can the following statement that I came across be valid? It's holding a string.
char * name = "Duncan"
Thanks.
|
feedback
|
|
It's holding a pointer to a string. That's not the same. | |||
|
feedback
|
|
"Duncan" is a null terminated string and as such an array of char ( Your statement is OK in C, but in C++ "Duncan" is a const char array, so you should use BTW, if you do not need to change the pointer variable name, it's better to have | |||||||
feedback
|
|
It's still pointing to a string. The string gets put in memory first, and | |||
|
feedback
|
This is incorrect: references hold addresses of other variables; pointers can hold addresses of anything, or even nothing in particular (e.g. In this case, | |||
|
feedback
|
|
In this particular case, the compiler will store the array with data So yes, the pointer is only holding an address. The data are somewhere else. This brings me to saying, writing code like this is not so good. For example, if you change that string through your pointer, you get an undefined behavior. | |||
|
feedback
|
|
That's a definition of a char pointer. After the definition, on the right side of "=", you have a constant definition. The constant is stored somewhere in memory and its address is used as first value for "name". Later on you will be able to assign other value to "name". You are not bound to the first value, in fact "name" is a variable. | |||
|
feedback
|
"Duncan"is aconst chararray, so const-correctness wise you should writeconst char* name = "Duncan". – user1071136 Dec 18 '11 at 21:12