unicode 기반의 console project에서 문자열 출력시에
착실하게 wcout과 _T()를 썼을때 한글이 아예 출력되지 않는다.

#include <tchar.h>
#include <iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{

wcout << _T("english") << endl;
wcout << _T("한글") << endl;
return 0;
}


setlocale(LC_ALL, ""); 로 로컬 컴퓨터의 기본 설정을 따르도록 해주면 잘 나온다.
#include <tchar.h>
#include <iostream>
using namespace std;

int _tmain(int argc, _TCHAR* argv[])
{
setlocale(LC_ALL, "");
wcout << _T("english") << endl;
wcout << _T("한글") << endl;
return 0;
}