Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

how to hide the console c++

#include <WinUser.h>

int main
{
    ShowWindow(GetConsoleWindow(), SW_HIDE);
    
    return 0;
}
 
PREVIOUS NEXT
Tagged: #hide #console
ADD COMMENT
Topic
Name
6+8 =