01.04.2015, 16:41
Here's an example:
You cannot store several characters in a single variable if that's what you mean.
pawn Код:
new array[2][5]; // Declare the array
array[0] = "Test"; // Make array 0 contain "test"
array[1] = array[0]; // Make array 1 contain what array 0 contains