Hacker News new | ask | show | jobs
by hans_castorp 259 days ago
Pascal (and Modula if I'm not mistaken) supports this too.
1 comments

Ada too, which is of course Pascal-based. Like many programming language features, it feels like it was lost simply because C didn't have it and everyone wanted to copy C.
Reminds me of this fantastic talk: https://www.youtube.com/watch?v=wo84LFzx5nI
Many BASIC dialects as well.

Hence why the whole base index discussion only became relevant in C based languages.

In C can't you just offset pointer and then you'll be able to index with arbitrary starting value?
Yes. I do this a lot when writing linear algebra stuff. All the math texts write things in 1-based notation for matrices. The closer I can make the code match the paper I'm implementing makes life so much easier. Of course there's a big comment at the beginning of the function when I modify the pointer to explain why I'm doing it.
Technically no, a pointer pointing outside of its array (or similar) at any point is undefined behaviour. More importantly for this discussion, without support from the language it's not very ergonomic to work with. What happens when you need to call strlen, memcpy, or free?
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.