else
	{
		// TODO: code your application's behavior here.
		CString strHello;
		strHello.LoadString(IDS_HELLO);
		cout << (LPCTSTR)strHello << endl;
		TCHAR str[256]=_TEXT("HelloWorld\n");
		_tprintf(str);
		int len=_tcslen(str);
		cout<<len<<endl;
		cout<<sizeof(str)<<endl;
	}

	return nRetCode;
}

/*
,UNICODE,_UNICODE

0038893C
HelloWorld
11
512
Press any key to continue
*/