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