06.10.2014, 13:10
Well actually there is a Bug in this function.
Look at this Code-snippet:
You should expect, that the output print is:
But it isn't. Its actually:
Well, its not such a hard bug, but maybe u can fix it anyway 
mfg.
Look at this Code-snippet:
Код:
#include <a_samp>
new string[2]; //The size isn't matter
main()
{
for(new i; i<sizeof string; i++) string[i] = 'a';
printf("|%s|",string);
}
Код:
|aa|
Код:
|aa|%s||

mfg.


