14.10.2010, 09:28
new variable[20];
This is an array (Or string) with 20 cells.
The cells are identified as:
variable[0], variable[1], variable[2], etc up to variable[19].
There is no variable[20] since you start on 0.
This is an array (Or string) with 20 cells.
The cells are identified as:
variable[0], variable[1], variable[2], etc up to variable[19].
There is no variable[20] since you start on 0.

