02.11.2012, 20:40
Quote:
To define an array you need to type in the following thing:
Код:
new array[128]; Indexes in arrays start with 0. So if you want to assign a value to a place in the array, for example for place 0: Код:
array[0] = somevalue; array[1] = anothervalue; //etc. |