Is an array's name a pointer in C? If not, what is the difference between an array's name and a pointer variable?
|
|
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:
a contains space for seven integers, and you can put a value in one of them with an assignment, like this:
Here is a pointer:
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:
What can be confusing is that you can also write this:
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:
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. |
||||||||||||||
|
|
|
An array declared like this
allocates 10 A pointer like this allocates just the pointer p on the stack:
It doesn't allocate any
and use array subscripts as you can with a:
|
|||
|
|
|
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'. |
||||||
|
|
|
The array name by itself yields a memory location, so you can treat the array name like a pointer:
And other nifty stuff you can do to pointer (e.g. adding/substracting an offset), you can also do to an array:
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:
|
|||
|
|
|
|
When an array is used as a value, its name represents the address of the first element.
|
||
|
|
|
|
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 In short, the array name is not a pointer, but in most contexts it is treated as though it were a pointer. |
||
|
|

&array[0]yields a pointer, not an array ;) – jalf Oct 29 at 6:55