According to this topic, comparing pointer with one past the last element of an array object is allowed.
And according to @jalf comment, comparing pointer with one before the first element of an array object is forbidden.
example1
int array[10];
int *ptr;
for(ptr=&array[9]; ptr>(array-1); ptr--) {…}
example2
int array[10];
int *ptr;
for(ptr=&array[9]; ptr>=(array); ptr--) {…}
Are both example1 and example2 forbidden?
Is there proof from the C standard that comparing pointer with one before the first element of an array object is forbidden?
array-1
is undefined; in the second case, ptr
becomes undefined when it is decremented after the iteration when it is equal to array
.When an expression that has integer type is added to or subtracted from a pointer, the result has the type of the pointer operand. If the pointer operand points to an element of an array object, and the array is large enough, the result points to an element offset from the original element such that the difference of the subscripts of the resulting and original array elements equals the integer expression. In other words, if the expression
P
points to the i-th element of an array object, the expressions(P)+N
(equivalently,N+(P)
) and(P)-N
(whereN
has the valuen
) point to, respectively, thei+n
-th andi−n
-th elements of the array object, provided they exist. Moreover, if the expressionP
points to the last element of an array object, the expression(P)+1
points one past the last element of the array object, and if the expressionQ
points one past the last element of an array object, the expression(Q)-1
points to the last element of the array object. 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. If the result points one past the last element of the array object, it shall not be used as the operand of a unary*
operator that is evaluated.
The standard goes length to cover the element at the position one past the last element of the array object, while the element at the position one prior the first element falls under the "otherwise" clause of the above rule.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With