09.11.2010, 10:23
There actually has to be a bug. Because if you declare for example:
You can assign 0,1,2,3,4 and 5 is \0
Which makes it:
So, either way, you must of started with 1 instead of 0.
pawn Код:
new arr[5];
Which makes it:
pawn Код:
arr[0]='a';
arr[1]='b';
arr[2]='c';
arr[3]='d';
arr[4]='e';