|
|
|
|
|
by kevin_thibedeau
263 days ago
|
|
It works in this case where you want to move the zero index forward a few cells to a valid offset. It is only UB for the general case where the offset may land outside valid memory. C has always supported negative indices, so moving index zero forward into the middle of the array is fine. |
|