vc ++中的文本格式

时间:2013-02-06 05:32:12

标签: xml visual-c++ string-formatting

我试图获取计算机名称,但正在获取的文本格式不正确。 我的电脑名称是“text-06”。但我得到的结果是“ÊK??ÿÿÿÿ”

TCHAR compName[40];
if(GetComputerName(compName,(LPDWORD)&size)!=0)
  wsprintf(text,("\nComputer Name : %s "),compName);

wsprintf(text,("%s"),compName);

TiXmlText * textcompnm = new TiXmlText(text);  
elecompnm->LinkEndChild( textcompnm );

0 个答案:

没有答案