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);
ULONGLONG t= 10292029202202LL;
%I64u
wchar_t szMsg[MAX_PATH];swprintf(szMsg,L"\n Value of t is : %I64u",t);
OutputDebugString(szMsg);
Labels: VC++
0 Comments:
Post a Comment
<< Home