Skip to content

Instantly share code, notes, and snippets.

@yhyjp
Created April 11, 2014 13:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yhyjp/10469494 to your computer and use it in GitHub Desktop.
Save yhyjp/10469494 to your computer and use it in GitHub Desktop.
Win32 プロジェクト時の Console 表示方法
// 初期化.
AllocConsole();
freopen("CONOUT$", "w", stdout);
freopen("CONIN$", "r", stdin);
// ~ printf, cout, どうのこうの ~.
// 開放.
FreeConsole();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment