vote up 8 vote down star
1

Hi,

I know that similar questions are posted in SO, but I thought I can ask this in the following the context:

char amessage[] = "now is the time";
char *pmessage = "now is the time";

I read from The C Programming Language, 2nd Edition that the above two statements don't do the same thing.

I always thought that an array is an convenient way to manipulate pointers to store some data, but this is clearly not the case... what are the "non-trivial" differences between arrays and pointers in C?

flag

13  
And what else did The C Programming language have to say on the subject? – Neil Butterworth Aug 26 at 16:03
I may be misremembering this, but I'd like to point out that that you can use the [] notation on pointers and the * notation on arrays. The only big difference from the code's point of view is that amessage's value cannot change, so amessage++ should fail (but I believe *(amessage+1) will succeed. There are other differences internally I believe, but they almost never actually matter. – Bill K Aug 26 at 17:25
1  
Oh, and generally (not in the cases you mentioned), arrays automatically allocate memory, pointers you have to allocate your own memory. Yours should both just point to blocks of memory that were allocated as part of the program loading. – Bill K Aug 26 at 17:26
1  
Along with the K&R (which is a great book, by the way) I'd suggest you read pw2.netcom.com/~tjensen/ptr/cpoint.htm - in interim. – amaterasu Aug 26 at 17:45
@Neil What good does asking that do anyone? Can you not take it on good faith that the asker has read what The C Programming Language has to say and it still didn't make sense to him? I've certainly read explanations of things in books that still just didn't click for me or make sense. Having a second explanation or sometimes a third can be extremely helpful. And that's exactly what stackoverflow is for. – Alcon Aug 26 at 18:48
show 1 more comment

12 Answers

vote up 12 vote down check

True, but it's a subtle difference. Essentially, the former:

char amessage[] = "now is the time";

Defines an array whose members live in the current scope's stack space, whereas:

char *pmessage = "now is the time";

Defines a pointer that lives in the current scope's stack space, but that references memory elsewhere (in this one, "now is the time" is stored elsewhere in memory, commonly a string table).

Also, note that because the data belonging to the second definition (the explicit pointer) is not stored in the current scope's stack space, it is unspecified exactly where it will be stored and should not be modified.

Edit: As pointed out by Mark, GMan, and Pavel, there is also a difference when the address-of operator is used on either of these variables. For instance, &pmessage returns a pointer of type char**, or a pointer to a pointer to chars, whereas &amessage returns a pointer of type char(*)[16], or a pointer to an array of 16 chars (which, like a char**, needs to be dereferenced twice as litb points out).

link|flag
While true, this is hardly the biggest difference. What's the difference between &amessage and &pmessage, for example? – Mark Ransom Aug 26 at 16:12
Isn't &amessage undefined..? – Walt W Aug 26 at 16:14
&pmessage will be the address of pmessage, somewhere on the stack. Likewise, &amessage will be the address of the array on the stack, same as amessage. However, &amessage has a different type than amessage. – GMan Aug 26 at 16:24
1  
No, it's not undefined. The difference is that the type of &pmessage is char** - pointer to pointer to char, and the type of &amessage is char(*)[16] - pointer to array of 16 chars. Those two types are not compatible (the second one, in particular, is simply address of the first character in the string, while the first one is address of variable that stores the address of the first character). – Pavel Minaev Aug 26 at 16:24
1  
@Bill: Nah, cause the array version is actually just a shortcut for array instantiation. So the array is allocated in the stack, and then loaded with the string's data. – Walt W Aug 26 at 17:42
show 10 more comments
vote up 5 vote down

An array contains the elements. A pointer points to them.

The first is a short form of saying

char amessage[16];
amessage[0] = 'n';
amessage[1] = 'o';
...
amessage[15] = '\0';

That is, it is an array that contains all the characters. The special initialization initializes it for you, and determines it size automatically. The array elements are modifiable - you may overwrite characters in it.

The second form is a pointer, that just points to the characters. It stores the characters not directly. Since the array is a string literal, you cannot take the pointer and write to where it points

char *pmessage = "now is the time";
*pmessage = 'p'; /* undefined behavior! */

This code would probably crash on your box. But it may do anything it likes, because its behavior is undefined.

link|flag
vote up 3 vote down

Along with the memory for the string "now is the time" being allocated in two different places, you should also keep in mind that the array name acts as a pointer value as opposed to a pointer variable which pmessage is. The main difference being that the pointer variable can be modified to point somewhere else and the array cannot.

char arr[] = "now is the time";
char *pchar = "later is the time";

char arr2[] = "Another String";

pchar = arr2; //Ok, pchar now points at "Another String"

arr = arr2; //Compiler Error! The array name can be used as a pointer VALUE
            //not a pointer VARIABLE
link|flag
vote up 3 vote down

Here's a hypothetical memory map, showing the results of the two declarations:

                0x00  0x01  0x02  0x03  0x04  0x05  0x06  0x07
    0x00008000:  'n'   'o'   'w'   ' '   'i'   's'   ' '   't'
    0x00008008:  'h'   'e'   ' '   't'   'i'   'm'   'e'  '\0'
        ...
amessage:
    0x00500000:  'n'   'o'   'w'   ' '   'i'   's'   ' '   't'
    0x00500008:  'h'   'e'   ' '   't'   'i'   'm'   'e'  '\0'
pmessage:
    0x00500010:  0x00  0x00  0x80  0x00

The string literal "now is the time" is stored as a 16-element array of char at memory address 0x00008000. This memory may not be writable; it's best to assume that it's not. You should never attempt to modify the contents of a string literal.

The declaration

char amessage[] = "now is the time";

allocates a 16-element array of char at memory address 0x00500000 and copies the contents of the string literal to it. This memory is writable; you can change the contents of amessage to your heart's content:

strcpy(amessage, "the time is now");

The declaration

char *pmessage = "now is the time";

allocates a single pointer to char at memory address 0x00500010 and copies the address of the string literal to it.

Since pmessage points to the string literal, it should not be used as an argument to functions that need to modify the string contents:

strcpy(amessage, pmessage); /* OKAY */
strcpy(pmessage, amessage); /* NOT OKAY */
strtok(amessage, " ");      /* OKAY */
strtok(pmessage, " ");      /* NOT OKAY */
scanf("%s", amessage);      /* OKAY */
scanf("%s", pmessage);      /* NOT OKAY */

und so weiter. If you changed pmessage to point to amessage:

pmessage = amessage;

then it can be used everywhere amessage can be used.

link|flag
@John Bode, awesome answer :). – mahesh Sep 3 at 12:21
vote up 2 vote down

The second one allocates the string in some read-only section of the ELF. Try the following:

#include <stdio.h>

int main(char argc, char** argv) {
    char amessage[] = "now is the time";
    char *pmessage = "now is the time";

    amessage[3] = 'S';
    printf("%s\n",amessage);

    pmessage[3] = 'S';
    printf("%s\n",pmessage);
}

and you will get a segfault on the second assignment (pmessage[3]='S').

link|flag
That's a very implementation-centric explanation. What if it's a popular compiler that doesn't target ELF (e.g. VC++)? – Pavel Minaev Aug 26 at 16:25
You might get a segfault. That's undefined. – tkadlubo Aug 26 at 18:05
vote up 1 vote down

Watch this video for a pretty good explanation on pointers - Binky pointer fun

link|flag
vote up 1 vote down

Microsoft has a good article on the subject. KB44463

link|flag
vote up 1 vote down

I can't add usefully to the other answers, but I will remark that in Deep C Secrets, Peter van der Linden covers this example in detail. If you are asking these kinds of questions I think you will love this book.


P.S. You can assign a new value to pmessage. You can't assign a new value to amessage; it is immutable.

link|flag
vote up 1 vote down

The first form (amessage) defines a variable (an array) that lives at the same location as the string "now is the time".

The second form (pmessage) defines a variable (a pointer) that lives in a different location than the string "now is the time".

Try this program out:

#include <inttypes.h>
#include <stdio.h>

int main (int argc, char *argv [])
{
     char  amessage [] = "now is the time";
     char *pmessage    = "now is the time";

     printf("&amessage   : %#016"PRIxPTR"\n", (uintptr_t)&amessage);
     printf("&amessage[0]: %#016"PRIxPTR"\n", (uintptr_t)&amessage[0]);
     printf("&pmessage   : %#016"PRIxPTR"\n", (uintptr_t)&pmessage);
     printf("&pmessage[0]: %#016"PRIxPTR"\n", (uintptr_t)&pmessage[0]);

     printf("&\"now is the time\": %#016"PRIxPTR"\n",
            (uintptr_t)&"now is the time");

     return 0;
}

You'll see that while &amessage is equal to &amessage[0], this is not true for &pmessage and &pmessage[0]. In fact, you'll see that the string stored in amessage lives on the stack, while the string pointed at by pmessage lives elsewhere.

Edit: litb points out that the address of the string stored in amessage is not the same as the address of the string literal that it is initialized from. I should have been more specific when mentioning which copy of the string is located at the same address as the address of amessage.

I've modified the program to illustrate litb's point: the last printf shows the address of the string literal. If your compiler does "string pooling" then there will be only one copy of the string "now is the time" in the executable's data segment -- and you'll see that its address is not the same as the address of amessage. This is because amessage gets a copy of the string when it is initialized.

In the end, the point is that amessage stores the string in its own memory (on the stack), while pmessage points to the string which is stored elsewhere.

link|flag
That's wrong. The array holds a copy of the string literal - it's not the same array. – Johannes Schaub - litb Aug 26 at 18:09
Maybe I was a bit ambiguous. Let me clarify: there is a variable named amessage. There is a string whose contents are "now is the time". The address of amessage is the same as the address of the "n" in that string. That's the relationship I'm talking about. Granted, there may be other copies of "now is the time" floating about in the program's address space, but I'm talking about the copy that's stored in the array. – Dan Moulding Aug 26 at 18:23
Now it makes much sense to me. Thanks for the further explanation! – Johannes Schaub - litb Aug 26 at 18:53
vote up 0 vote down

If an array is defined so that it's size is available at declaration time, sizeof(p)/sizeof(type-of-array) will return the number of elements in the array.

link|flag
vote up 0 vote down

For this line: char amessage[] = "now is the time";

the compiler will evaluate uses of amessage as a pointer to the start of the array holding the characters "now is the time". The compiler allocates memory for "now is the time" and initializes it with the string "now is the time". You know where that message is stored because amessage always refers to the start of that message. amessage may not be given a new value- it is not a variable, it is the name of the string "now is the time".

This line: char *pmessage = "now is the time";

declares a variable, pmessage which is initialized (given an initial value) of the starting address of the string "now is the time". Unlike amessage, pmessage can be given a new value. In this case, as in the previous case, the compiler also stores "now is the time" elsewhere in memory. For example, this will cause pmessage to point to the 'i' which begins "is the time". pmessage = pmessage + 4;

link|flag
vote up -1 vote down

an array is a const pointer. You cannot update its value and make it point anywhere else. While for a pointer you can do.

link|flag
Arrays are not pointers, const or otherwise. In many contexts, the type of an array identifier will implicitly be converted from "N-element array of T" to "pointer to T", but this does not make an array a pointer. – John Bode Aug 27 at 0:59
agreed.. mistake admitted.. thanks for the clarification John. – mkamthan Aug 27 at 15:28

Your Answer

Get an OpenID
or

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