Hi all,
Is there any way to display __int64 using the printf command?
(I couldn't find any from the MS site)
Jane
How to print unsigned __int64 using printf
Re: How to print unsigned __int64 using printf
The following code will do the thing on MS VC 6.0.
Hope this will help.
Neo
Code: Select all
printf("value using I64d: %I64d\n", value);
printf("value using I64x: %016I64x(hex)\n", value);
Neo