문제

How can I perform the task in subject in order to display this DWORD array content in Hex on my log?

도움이 되었습니까?

해결책

DWORD ar[4];
for (int i = 0; i < 4; i++)
{   CString str;
    str.Format(L"%08X\n", ar[i]);
    TRACE(L"%s", str);
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top