Skip to content

Instantly share code, notes, and snippets.

View yhyjp's full-sized avatar

Yuki Hirano yhyjp

View GitHub Profile
@yhyjp
yhyjp / AllocConsole
Created April 11, 2014 13:35
Win32 プロジェクト時の Console 表示方法
// 初期化.
AllocConsole();
freopen("CONOUT$", "w", stdout);
freopen("CONIN$", "r", stdin);
// ~ printf, cout, どうのこうの ~.
// 開放.
FreeConsole();