Hello.
I can’t send the long long (8bytes) number to console window using printf instruction, because %d is using only 4bytes number to output.
So, how can I do this using only C commands?
A priori thanks.
Best regards…
Hello.
I can’t send the long long (8bytes) number to console window using printf instruction, because %d is using only 4bytes number to output.
So, how can I do this using only C commands?
A priori thanks.
Best regards…
linux: %lld or %llu
windows: %I64d or %I64u
kyzhao, thanks a lot