标签:html_ 应用程序 ack stdio.h pre 步骤 form 开启 osi
GUI桌面应用程序添加控制台只需按如下步骤在代码中添加即可:
1、 第一步:引入头文件
#include "stdio.h"
2、第二步:在程序开始部分添加如下代码
AllocConsole();
freopen("CONOUT$", "w", stdout);//开启中文控制台输出支持
3、 第三步:程序结束部分添加
FreeConsole(); //释放
标签:html_ 应用程序 ack stdio.h pre 步骤 form 开启 osi
原文地址:https://www.cnblogs.com/alita/p/10665194.html