IDE/VisualStudio
[VisualStudio] 디버그 콘솔창에서 한글 출력하기.
어발
2021. 6. 21. 16:31
너무너무 간단하게 한글 출력하기.
int main(int argc, char** argv) {
SetConsoleOutputCP(CP_UTF8);
}
728x90