Does anybody knows how to print an int64 using printf ?
Printable View
Does anybody knows how to print an int64 using printf ?
There are two ways to change int64 to ASCII.
_int64 numAmount;
char textAmount[100];
_i64toa( numAmount, textAmount, 10 );
printf(textAmount, "%I64d", numAmount);