//#define ALLOC_CONSOLE #ifdef ALLOC_CONSOLE AllocConsole(); // 开辟控制台 释放:FreeConsole(); SetConsoleTitle(L"Debug Output"); // 设置控制台窗口标题 freopen("CONOUT$","w",stdout); // 重定向输出 printf("hello!\n"); #endif