07.08.2011, 00:27
Which "way" is better?
FOR EXAMPLE:
1.
2.
FOR EXAMPLE:
1.
pawn Код:
new bool: Test = true, TestStr[5 + 1];
if(Test) valstr(TestStr, 45454);
else TestStr = "false";
printf("Test - %s", TestStr);
pawn Код:
new bool: Test = true, TestStr[5 + 1];
if(Test) format(TestStr, 5, "%d", 45454);
else TestStr = "false";
printf("Test - %s", TestStr);