Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How come an array’s address is equal to its value in C?

In the situation:

int x = 5;
unsigned char myArray[sizeof (int)];

This line...

memcpy (&myArray , &x , sizeof (int));

... is producing identical results to:

memcpy (myArray , &x , sizeof (int));

I am very much a novice to C++, but I was under the impression that arrays are just a pointer to their data. I was shocked when &myArray was working identical to myArray. I would have thought it would be trying to copy to the ADDRESS of the pointer, which would be very bad!

share|improve this question
2  
Arrays are not pointers. – Pubby Feb 1 at 3:40
@Pubby So myArray is identical to &myArray? There is no 'catch'? – Jonathan Feb 1 at 3:42

marked as duplicate by Jerry Coffin, Fraser, rene, Nicolas Bachschmidt, Sankar Ganesh Feb 2 at 13:35

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 2 down vote accepted

Two things about arrays:

  • Arrays "decay" to pointers of their element type. This is why the second version is working. See this :Is array name a pointer in C?

  • There is such a thing as a "pointer to array". They are rarely used, but look like this:


int a[5];
int (*b)[5] = &a; // pointer to an array of 5 ints

The & operator when used on an array gives you a pointer to array type, which is why the following doesn't work:

int* b = &a; // error

Since memcpy's parameter is a void*, which accepts any pointer type, both &myArray and myArray work. I'll recommend going with myArray though as it's more idiomatic.

share|improve this answer

You are correct in believing the types are different. &myArray is a unsigned char(*)[] (a pointer to an array of unsigned char) and myArray (when passed to a function as an argument) becomes type unsigned char* (pointer to unsigned char). However, note that even though the types are different, there value is the same address. The reason both work with memcpy is because memcpy takes void* and doesn't care about the type.

share|improve this answer

what is the difference between myArray and &myArray?

They both point to the first element of myArray.

The name of an array usually evaluates to the address of the first element of the array, so myArray and &myArray have the same value.

memcpy function takes memory address to destination as input argument. As myArray and &myArray points to the same place, so the effort is the same:

void* memcpy( void* dest, const void* src, std::size_t count );

Parameters
dest   -     pointer to the memory location to copy to
src    -     pointer to the memory location to copy from
count  -     number of bytes to copy
share|improve this answer

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