Which?
#1

Which "way" is better?

FOR EXAMPLE:

1.

pawn Код:
new bool: Test = true, TestStr[5 + 1];
    if(Test) valstr(TestStr, 45454);
    else TestStr = "false";
    printf("Test - %s", TestStr);
2.

pawn Код:
new bool: Test = true, TestStr[5 + 1];
    if(Test) format(TestStr, 5, "%d", 45454);
    else TestStr = "false";
    printf("Test - %s", TestStr);
Reply


Messages In This Thread
Which? - by Gh0sT_ - 07.08.2011, 00:27
Re: Which? - by Grim_ - 07.08.2011, 01:01
Re: Which? - by Gh0sT_ - 07.08.2011, 01:12
Re: Which? - by Gh0sT_ - 07.08.2011, 11:59

Forum Jump:


Users browsing this thread: 1 Guest(s)