13.06.2014, 20:01
It's really upto you. Making an array always wastes memory but you can also make a char-array if the value doesn't needs to be greater than 255 or lower than 0. Normal array stores values between -2,147,483,648 and 2,147,483,647, so you don't really need it.
pawn Код:
new var[2 char];
// Now we will use var{0} var{1} like this with braces.