I can't understand how this code will behave:
PHP Code:
formatex(szData, charsmax(szData), "a%i", id)
If
id == 5 then I will have
szData equal to
"a5", but if
id >= 10 then
szData should be, like,
"a10".
But it will be:
Code:
szData[0]=="a"
szData[1]=="1"
szData[2]=="0"
or:
Code:
szData[0]=="a"
szData[1]=="10"
Which of them? Thanks in advance
__________________