Thanks!
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#pragma comment(lib, "user32.lib")
int main(int argc, char **argv)
{
ShowWindow(GetConsoleWindow(), SW_MAXIMIZE);
return 0;
}
The reason I would want to do this is to do game textual programming. Starting at the bottom so to speak.
GH