Answers for "how to hide the console c++"

C++
3

how to hide the console c++

#include <WinUser.h>

int main
{
    ShowWindow(GetConsoleWindow(), SW_HIDE);
    
    return 0;
}
Posted by: Guest on August-29-2020
1

how to hide the c++ console

#include <WinUser.h>

ShowWindow(GetConsoleWindow(), SW_HIDE);
Posted by: Guest on August-29-2020

Code answers related to "how to hide the console c++"

Browse Popular Code Answers by Language