Saturday, May 31, 2008

Format Specifier ULONGLONG type

Format specifier for ULONGLONG type:
ULONGLONG t= 10292029202202LL;

%I64u
wchar_t szMsg[MAX_PATH];swprintf(szMsg,L"\n Value of t is : %I64u",t);
OutputDebugString(szMsg);

No comments: