Skip to content

Instantly share code, notes, and snippets.

@phoenixthrush
Last active August 13, 2025 01:24
Show Gist options
  • Select an option

  • Save phoenixthrush/345bbce0131f09e14ef507279e604b14 to your computer and use it in GitHub Desktop.

Select an option

Save phoenixthrush/345bbce0131f09e14ef507279e604b14 to your computer and use it in GitHub Desktop.
Hide C Program Console Window #C #Windows #WinAPI
// 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