28.04.2011, 10:00
What is the difference between the formating:
In this example i'm using sizeof function but i know string size
and in this:
Does it have an impact on the server if i know string size but i using sizeof in formating.
pawn Код:
new string[50];
format(string,sizeof(string),"%s...",...);
and in this:
pawn Код:
new string[50];
format(string,50,"%s...",...);