c++ mfc我定义了一个字符数组unsigned char result[16];,我然后给它赋值了,最后我想MessageBox()显示

2025-01-05 06:56:08
推荐回答(2个)
回答1:

CString strTemp;
for(int i = 0; i < 16; i++)
{
strTemp += result[i];

strTemp += " ";//空格

}
Messagebox(strTemp);

回答2:

定义一个Cstring temp;
temp = result;
MessageBox(temp);