01.08.2012, 16:54
is there ANY way to dynamicaly change length of array?
in c++ you can do this
any way to do this in pawn?
in c++ you can do this
pawn Код:
int *a, b = 2;
a = new int[b];
//this will create array a with size 2 (b)