e.g cout << "Hello world";
I would like to increase the size of Hello wolrd on the output screen.
I would like to increase the size of Hello wolrd on the output screen.
PCONSOLE_FONT_INFOEX console_info = new CONSOLE_FONT_INFOEX; console_info->cbSize = sizeof(CONSOLE_FONT_INFOEX); GetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), false, console_info); console_info->dwFontSize.X = 8; //default 8 console_info->dwFontSize.Y = 18; //default 12 SetCurrentConsoleFontEx(GetStdHandle(STD_OUTPUT_HANDLE), false, console_info);
Comment