Skip to content

Instantly share code, notes, and snippets.

@phoenixthrush
Created November 9, 2022 11:27
Show Gist options
  • Save phoenixthrush/345bbce0131f09e14ef507279e604b14 to your computer and use it in GitHub Desktop.
Save phoenixthrush/345bbce0131f09e14ef507279e604b14 to your computer and use it in GitHub Desktop.
Hide C program console window
// compile using -Wl,--subsystem,windows
// gcc hidden-window.c -o mushroom -Wl,--subsystem,windows -Wall
#include <windows.h>
int main(void) {
MessageBox(NULL, "mushrooms", "Phoenixthrush UwU", IDOK | MB_ICONEXCLAMATION);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment