看这个VC ++ 2010 程序怎么不能编译啊,
#include "stdafx.h" #include <iostream> #include <localel> using namespace std; int main() { setlocale(LC_ALL,"chs"); wchar_t cc[]="中"; wcout<<cc; return 0; } 为什么不能编译啊,VC 2010中,
#include "stdafx.h" #include <iostream> #include <localel> using namespace std; int main() { setlocale(LC_ALL,"chs"); wchar_t cc[]="中"; wcout<<cc; return 0; } 为什么不能编译啊,VC 2010中,
答案:wchar_t cc[]="中";
弄成wchar_t cc[]=_T("中");再试试
上一个:vc++编的汉诺塔计算,他的算法是什么?
下一个:用vc++编计算器程序时在定义一个CEdit类的子类MyEdit的成员变量m_DspEdit时有了下面的警告,