how to hide the console c 2b 2b

Solutions on MaxInterview for how to hide the console c 2b 2b by the best coders in the world

showing results for - "how to hide the console c 2b 2b"
Juan José
26 Jun 2020
1#include <WinUser.h>
2
3int main
4{
5    ShowWindow(GetConsoleWindow(), SW_HIDE);
6    
7    return 0;
8}
Juan José
16 Jan 2019
1#include <WinUser.h>
2
3ShowWindow(GetConsoleWindow(), SW_HIDE);