Hello.
I am trying to convert some c++ to another more basic language and i just wanted to clarify something.

array[ind++]

Does this code increment the array index before or after it is used.

Like if i did the following:
ind = 3

a = array[ind++]

would a be assigned the value in element 3 or element 4?

I am still learning c++ and have never seen this before so any comments would be much appreciated.