29.07.2012, 12:06
let's say I have this array
how can I get size of second dimension, so 128?
doing
is returning error, however in c++ it works perfectly :X
output: 128
pawn Код:
new a[MAX_PLAYERS][128]
doing
pawn Код:
sizeof(a[playerid]);
pawn Код:
char a[500][128];
cout << sizeof(a[1]);