Answers for "c++ hide show console"

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
0

c++ hide show console

#include <windows.h>

int main
{
    ShowWindow(GetConsoleWindow(), SW_HIDE);
    //ShowWindow(GetConsoleWindow(), SW_SHOW);
    return 0;
}
Posted by: Guest on February-20-2021

Browse Popular Code Answers by Language