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.

link|improve this question

25% accept rate
1  
This "definition" is deprecated. Can you guess why ? – BatchyX Dec 18 '11 at 20:56
It's not really deprecated; "Duncan" is a const char array, so const-correctness wise you should write const char* name = "Duncan". – user1071136 Dec 18 '11 at 21:12
@user1071136: G++ considers this as deprecated, and i cannot find anything on the C++11 standard that would allow this to compile. – BatchyX Dec 18 '11 at 21:33
feedback

6 Answers

It's holding a pointer to a string. That's not the same. name just contains an address of memory which contains the string.

link|improve this answer
feedback

"Duncan" is a null terminated string and as such an array of char ({'D', 'u', 'n', 'c', 'a', 'n', '\0'}). char*name="Duncan"; sets name to the address of the array.

Your statement is OK in C, but in C++ "Duncan" is a const char array, so you should use const char *name = "Duncan".

BTW, if you do not need to change the pointer variable name, it's better to have const char name[] = "Duncan". This only allocates memory for the string. Your sample code allocates memory for the string and for the pointer variable name. (Of course the compiler might optimize away name.)

link|improve this answer
I'm still not certain as to why const should be used here. – fdama Dec 18 '11 at 21:26
@fdama: what happens when you do name[1]++?.... (Ok: you be writing to protected memory in most cases, since static constants live there; anyways, you'd be changing the value of a string literal: not what you intend) – sehe Dec 18 '11 at 21:31
@fdama: In C++ string literals are const, so you must use const. Anyway, also in C it is not a good idea to mess up with string literals. Imagine a function that uses the same string literal in every call (for example to compare it against an input string). If someone modifies the string literal then your function will unexpectedly change its behaviour. – Werner Henze Dec 19 '11 at 12:51
feedback

It's still pointing to a string. The string gets put in memory first, and name points to that. It's compiled into your program, so it may not be obvious.

link|improve this answer
feedback

pointers can only hold addresses to other variables.

This is incorrect: references hold addresses of other variables; pointers can hold addresses of anything, or even nothing in particular (e.g. NULL).

In this case, name holds an address of a memory block of 7 bytes, containing ASCII codes for D,u,n,c,a,n, and \0.

link|improve this answer
feedback

In this particular case, the compiler will store the array with data Duncan\0 somewhere in the object file and the pointer will point there.

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.

link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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