stdafx.h 에
// Debug 버전
#ifdef _DEBUG
#pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console")
#endif
// Debuf나 Release모드 상관없이 콘솔을 실행하고 싶으면 #ifdef, #endif 지우고 #pragma ~ 만 써주면 됨!
이 세줄만 써주면 printf, cout 등 .... 된다!!!!유용하게 잘 활용하자
이 글에는 트랙백을 보낼 수 없습니다