Code: Select all
char *_i64toa(
__int64 value,
char (&str)[size],
int radix
);
char buf[64];
_i64toa(12345678,buf,10) //RETURN "12345678"
_i64toa(12345678,buf,2)//RETURN "101111000110000101001110"
Code: Select all
ImportC "MSVCRT.LIB"
_i64toa(a.q,b.s,c) As "__i64toa"
EndImport
Code: Select all
'error code
p1.l=10
c.s{10}
_i64toa(12345678,c,p1)Who can translate I will be very grateful

