VC++6.0中Console程序台程序使用CString

  1.添加#include "afx.h";

  2.PROJECT -> SETTING -> C/C++ -> CATEGORY 中选择 Code Generation,然后在Use run-time library中选择Multithreaded的相关选择即可。

#include "stdafx.h"
#include "afx.h"

int main(int argc, char* argv[])
{
    CString str;

    str = _T("你好,Hello World\r\n");

	printf("%s", str);
	return 0;
}


你可能感兴趣的:(console,vc++6.0,CStr)