[ad_1]
c program hide console window
#include
#define _WIN32_WINNT 0x0500
#include
int main(int argc,char** argv){
HWND hWnd = GetConsoleWindow();
ShowWindow( hWnd, SW_MINIMIZE );
ShowWindow( hWnd, SW_HIDE );
return 0;
}
[ad_2]