1 based Numeration

can anyone explain me the meaning of 1 based numeration???

Let’s say there are 3 objects.

== 1 based numeration ==

  • obj[1] = first object
  • obj[2] = second object
  • obj[3] = third object

== 0 based numeration ==

  • obj[0] = first object
  • obj[1] = second object
  • obj[2] = third object

I hope this is what you wanted to know.

1 Like

yes,this is exactly what i wanted to know… :slight_smile:
thanks a lot for your feedback :slight_smile: