#Array memory allocation

7 messages · Page 1 of 1 (latest)

narrow imp
#

is the block of memory reserved for an array always compact with incremental pointers for each element?

&Arr[i+1] -&Arr[i] == (Arr+(i+1)) - (Arr+(i))

wraith pivotBOT
#

When your question is answered use !solved to mark the question as resolved.

Remember to ask specific questions, provide necessary details, and reduce your question to its simplest form. For tips on how to ask a good question run !howto ask.

grand solar
#

yes

#

&arr[x] + y == &arr[x + y]

#

including &arr[0] + y == &arr[0 + y]

#

&Arr[i+1] - &Arr[i] == 1

narrow imp
#

!solved