|
Solution:
There is no difference between descriptors for 64-bit objects and 32-bit objects. When displaying a 64-bit fixed-precision object (INT64, UINT64, LONG64, ULONG64, or DWORD64) use theI64 flag with %d.
example: INT64 x = 1234567890123456; printf("The 64 bit number is: %I64d\n",x;)
As a rule, use %p to display the new pointer types. This will give their full hexadecimal value.
This applies to:
|