vote up 0 vote down star

Is an array's name a pointer in C? If not, what is the difference between an array's name and a pointer variable?

flag

No. But array is the same &array[0] – pst Oct 29 at 6:51
5  
@pst: &array[0] yields a pointer, not an array ;) – jalf Oct 29 at 6:55
@pst meant that array (the name of array, that's why in italic) points on the first element of array and it's the same as write &array[0] (also in italic). – Nava Carmon Oct 29 at 7:23
@Nava (and pst): array and &array[0] are not really the same. Case in point: sizeof(array) and sizeof(&array[0]) give different results. – Thomas Padron-McCarthy Oct 29 at 7:50
@Thomas agree, but in terms of pointers, when you dereference array and &array[0], they produce the same value of array[0].i.e. *array == array[0]. Nobody meant that these two pointers are the same, but in this specific case (pointing to the first element) you can use the name of array either. – Nava Carmon Oct 29 at 11:12
show 3 more comments

6 Answers

vote up 10 vote down check

An array is an array and a pointer is a pointer, but in most cases array names are converted to pointers.

Here is an array:

int a[7];

a contains space for seven integers, and you can put a value in one of them with an assignment, like this:

a[3] = 9;

Here is a pointer:

int *p;

p doesn't contain any spaces for integers, but it can point to a space for an integer. We can for example set it to point to one of the places in the array a, such as the first one:

p = &a[0];

What can be confusing is that you can also write this:

p = a;

This does not copy the contents of the array a into the pointer p (whatever that would mean). Instead, the array name a is converted to a pointer to its first element. So that assignment does the same as the previous one.

Now you can use p in a similar way to an array:

p[3] = 17;

The reason that this works is that the array dereferencing operator in C, "[ ]", is defined in terms of pointers. x[y] means: start with the pointer x, step y elements forward after what the pointer points to, and then take whatever is there. Using pointer arithmetic syntax, x[y] can also be written as *(x+y).

For this to work with a normal array, such as our a, the name a in a[3] must first be converted to a pointer (to the first element in a). Then we step 3 elements forward, and take whatever is there. In other words: take the element at position 3 in the array. (Which is the fourth element in the array, since the first one is numbered 0.)

So, in summary, array names in a C program are (in most cases) converted to pointers. One exception is when we use the sizeof operator on an array. If a was converted to a pointer in this contest, sizeof(a) would give the size of a pointer and not of the actual array, which would be rather useless, so in that case a means the array itself.

link|flag
A similar automatic conversion is applied to function pointers - both functionpointer() and (*functionpointer)() mean the same thing, strangely enough. – Carl Norum Oct 29 at 6:52
1  
He did not asked if arrays and pointers are the same, but if an array's name is a pointer – Ricky AH Oct 29 at 6:58
2  
An array name is not a pointer. It's an identifier for a variable of type array, which has an implicit conversion to pointer of element type. – Pavel Minaev Oct 29 at 7:24
Also, apart from sizeof(), the other context in which there's no array->pointer decay is operator & - in your example above, &a will be a pointer to an array of 7 int, not a pointer to a single int; that is, its type will be int(*)[7], which is not implicitly convertible to int*. This way, functions can actually take pointers to arrays of specific size, and enforce the restriction via the type system. – Pavel Minaev Oct 29 at 7:25
@Pavel: Thanks for the comment about &. I knew there were other exceptions, but sizeof was the only one on top of my mind. I've changed "an exception" to "one exception", which I think indicates that there are other exceptions (but I'm no a native English speaker). – Thomas Padron-McCarthy Oct 29 at 7:41
show 2 more comments
vote up 0 vote down

An array declared like this

int a[10];

allocates 10 ints on the stack. You can't modify a but you can do pointer arithmetic with a.

A pointer like this allocates just the pointer p on the stack:

int *p;

It doesn't allocate any ints. You can modify it:

p = a;

and use array subscripts as you can with a:

p[2] = 5;
a[2] = 5;    // same
*(p+2) = 5;  // same effect
*(a+2) = 5;  // same effect
link|flag
Arrays are not always allocated on the stack. Yhat's an implementation detail that will vary from compiler to compiler. In most cases static or global arrays will be allocated from a different memory region than the stack. Arrays of const types may be allocated from yet another region of memory – Mark Bessey Oct 29 at 6:59
vote up 1 vote down

An array is a collection of secuential and contiguous elements in memory. In C an array's name is the index to the first element, and applying an offset you can access the rest of elements. An "index to the first element" is indeed a pointer to a memory direction.

The difference with pointer variables is that you cannot change the location the array's name is pointing to, so is similar to a const pointer (it's similar, not the same. See Mark's comment). But also that you don't need to dereference the array name to get the value if you use pointer aritmetic:

char array = "hello wordl"; char* ptr = array;

char c = array[2]; //array[2] holds the character 'l' char *c1 = ptr[2]; //ptr[2] holds a memory direction that holds the character 'l'

So the answer is kinda 'yes'.

link|flag
An array name is not the same as a const pointer. Given: int a[10]; int *p=a; sizeof(p) and sizeof(a) are not the same. – Mark Bessey Oct 29 at 6:56
Ok, Edited for clarification – Ricky AH Oct 29 at 6:58
There are other differences. In general, it's best to stick to the terminology used by the C Standard, which specifically calls it a "conversion". Quote: "Except when it is the operand of the sizeof operator or the unary & operator, or is a string literal used to initialize an array, an expression that has type ‘‘array of type’’ is converted to an expression with type ‘‘pointer to type’’ that points to the initial element of the array object and is not an lvalue. If the array object has register storage class, the behavior is undefined." – Pavel Minaev Oct 29 at 7:28
vote up 0 vote down

The array name by itself yields a memory location, so you can treat the array name like a pointer:

int a[7];

a[0] = 1976;
a[1] = 1984;

printf("memory location of a: %p", a);

printf("value at memory location %p is %d", a, *a);

And other nifty stuff you can do to pointer (e.g. adding/substracting an offset), you can also do to an array:

printf("value at memory location %p is %d", a + 1, *(a + 1));

Language-wise, if C didn't expose the array as just some sort of "pointer"(pedantically it's just a memory location. It cannot point to arbitrary location in memory, nor can be controlled by the programmer). We always need to code this:

printf("value at memory location %p is %d", &a[1], a[1]);
link|flag
vote up 0 vote down

When an array is used as a value, its name represents the address of the first element.
When an array is not used as a value its name represents the whole array.

int arr[7];

/* arr used as value */
foo(arr);
int x = *(arr + 1); /* same as arr[1] */

/* arr not used as value */
size_t bytes = sizeof arr;
int *q = &arr;
link|flag
vote up 0 vote down

If an expression of array type (such as the array name) appears in a larger expression and it isn't the operand of either the & or sizeof operators, then the type of the array expression is converted from "N-element array of T" to "pointer to T", and the value of the expression is the address of the first element in the array.

In short, the array name is not a pointer, but in most contexts it is treated as though it were a pointer.

link|flag

Your Answer

Get an OpenID
or

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