25.02.2012, 11:47
pawn Код:
new test1[] = "Hello";
print(test1);
new test2[6];
format(test2, sizeof test2, "Hello");
print(test2);
So basically what i'm looking for is an explanation about it
new test1[] = "Hello";
print(test1);
new test2[6];
format(test2, sizeof test2, "Hello");
print(test2);
new test2[5] = "Hello";
new test1[6] = "Hello";
new test[];
test = "Hello";