Consider the following code :

void populate(int *arr)
{
   for(int j=0;j<4;++j)
       arr[j]=0;
}

int main()
{
   int array[2][2];
   populate(&array[0][0]);
}

There was a discussion regarding this on a local community whether the code is valid or not(Am I supposed to mention its name?). One guy was saying that it invokes UB because it violates

C++ Standard ($5.7/5 [expr.add])

"If both the pointer operand and the result point to elements of the same array object, or one past the last element of the array object, the evaluation shall not produce an overflow; otherwise, the behavior is undefined."

But I don't see anything wrong with the code,the code is perfectly OK for me.

So, I just want to know is this code valid or not? Am I missing something?

link|improve this question

+1 good question – Evan Teran Jan 12 '10 at 15:27
feedback

4 Answers

up vote 14 down vote accepted

Your array is two arrays of int[2], while your function populate() treats it as a single array of int[4]. Depending on exactly how the compiler decides to align the elements of array, this may not be a valid assumption.

Specifically, when j is 2 and you try to access arr[2], this is outside the bounds of main's array[0] and is therefore invalid.

link|improve this answer
But when you access arr[2], arr is not an "array [2] of anything", it is a pointer. I am not sure if this argument applies. – Alok Jan 10 '10 at 5:24
2  
@Alok: In C++, multidimensional arrays are a different thing than arrays of pointers. Java only has the latter, but C and C++ have both forms. – Greg Hewgill Jan 10 '10 at 5:50
1  
@Greg/Alok: I'm not sure I understand what you mean by "depending on how the compiler decides to align the elements of array". What does align have to do with this? If I understood Alok's answer (please correct me if not), a standard-conformant compiler has to allocate the memory in a specific way for this definition. The undefined behaviour doesn't come from how the compiler chooses to lay out the memory, but by invalid indexing done later. – Edan Maor Jan 10 '10 at 15:39
1  
@Edan: yes. The array elements will be contiguous. The undefined behavior is from invalid indexing. As I said in my post, &array[0][0]+2 == &array[1][0], but (&a[0][0] + 2) + 1 is undefined whereas &a[1][0] + 1 is valid. – Alok Jan 10 '10 at 16:12
1  
@Emile: Yes, the standard doesn't care how a pointer is implemented as long as it behaves as expected. Pointers are not memory addresses. Think of compilers targeting Flashbytecode for example. Raw pointers don't exist in that environment, so pointers have to be compiled to... some other representation. A pointer is a C/C++ concept. Just because it is typically compiled down to a memory address, that doesn't mean it's required to be equivalent. – jalf Jan 10 '10 at 18:32
show 14 more comments
feedback

You have an array of arrays. array[1] follows array[0] in memory, because arrays are contiguous. If p == array[0], then p[1] follows p[0], because arrays are contiguous. So, you are right: all the memory for array is contiguous.

In pictures, array looks like this.

+-----------------+-----------------+
|      [0]        |      [1]        |
+-----------------+-----------------+

Now, let's break down array[0] and array[1], they individually look like this:

+--------+--------+
|  [0]   |  [1]   |        
+--------+--------+

So, the final picture is:

+--------+--------+--------+--------+
| [0][0] | [0][1] | [1][0] | [1][1] |
+--------+--------+--------+--------+

Now, the question is, can you access this contiguous memory the way you are. The answer is, it is not guaranteed by the standard. The arrays are contiguous, but the standard doesn't allow indexing the way you have done. In other words:

&array[0][0]+2 == &array[1][0], but (&a[0][0] + 2) + 1 is undefined whereas &a[1][0] + 1 is valid. If this seems strange, it is, but as per the quote you posted from the standard, you are only allowed to calculate a pointer that is either inside an array or at most one past the array (without dereferencing that "one past" pointer).

In practice, I doubt that this would fail anywhere, but the according to the standard at least, your code is invalid because of undefined behavior.

See this post on comp.lang.c as well.

link|improve this answer
Shouldn't the last element in the third picture be "[1][1]"? – vobject Jan 10 '10 at 14:08
The question is not whether the memory is contiguous (it clearly is), but whether the behavior is well-defined. I don't see how this can be "half-right". He asks if it is UB, the answer is yes. The fact that it'll usually work doesn't make it any less undefined. – jalf Jan 10 '10 at 14:41
1  
jalf, you are right. When I said "half-right", I meant that some people thought that the memory need not be contiguous, therefore the behavior is undefined. On the other hand, many other people thought that the memory has to be continuous, so the behavior is well-defined. – Alok Jan 10 '10 at 15:30
1  
@vobject: fixed. @jalf: I have changed the wording of my answer. – Alok Jan 10 '10 at 15:37
What also needs to be added to the mix is the CPU configuration. For instance, the DEC memory model is reversed from the PC memory model. So the arrays would also be reversed and accessing them as a single array would come up differently. – Dave Jan 12 '10 at 1:47
show 2 more comments
feedback

That is not going to always work. C has arrays of arrays, not 2D arrays. The sub-arrays are not always specified to be contiguous in memory(static arrays might be, check C/C++ standard) In this particular example, I suspect it works correctly. However, if you had dynamically allocated the memory being passed in, you quite possibly would fail, because malloc(or new) might have put the subarrays quite far apart.

If, however, you want to linearly walk down '2d' memory, you can construct a 2D accessor against a 1D array and it will work fine and things like memset will work against the 1D array.

link|improve this answer
1  
Arrays are required to have contiguous memory (section 6.2.5, bullet 10 in the ISO C99 standard). And if multidimensional arrays are defined to be arrays of arrays, then doesn't that imply that they too are contiguous (the n+1st array must immediately follow the n-th array in memory)? – jamesdlin Jan 10 '10 at 5:15
Oops, I meant bullet 20. – jamesdlin Jan 10 '10 at 5:22
They must be contiguous, but there might be implementation-defined padding between them. I'm not aware of this being a problem for int on any compiler I've used, though. – Mark Ransom Jan 10 '10 at 5:23
Ah, good point. Padding could be a problem for multidimensional char arrays. – jamesdlin Jan 10 '10 at 5:25
1  
Where would the padding be? Between array[i]'s last element and array[i+1]'s first element? But array[i] and array[i+1] are successive elements of an array, so there can't be any padding. – Alok Jan 10 '10 at 5:39
show 5 more comments
feedback

In C everything is stored in linear memory segments. You are passing address of a[0][0] which would be same as address of a[0] so a[i][j] is same as a[i*ColSize+j] because everything is stored linearly. But if you allocate memory dynamically it would fail because that time all rows might not be stored in contiguous location. then a[i][j] would be *(&a[i]+j).

link|improve this answer
No -- the arrays are NOT required to be stored linearly by the standard. If it's declared as a two dimensional array, it's a two dimensional array -- not a single array big enough to hold all the sub-arrays. – Billy ONeal Jan 10 '10 at 5:51
1  
BillyONeal, an array of arrays is still an array and its elements are stored contiguously. – avakar Jan 10 '10 at 10:42
feedback

Your Answer

 
or
required, but never shown

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