控制台打印

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

 

posted @ 2014-09-27 09:13  zzyoucan  阅读(220)  评论(0编辑  收藏  举报