Skip to content

Instantly share code, notes, and snippets.

@rc-chuah
Created June 13, 2022 12:54
Show Gist options
  • Save rc-chuah/33ac894591955c090c192aee48ada421 to your computer and use it in GitHub Desktop.
Save rc-chuah/33ac894591955c090c192aee48ada421 to your computer and use it in GitHub Desktop.
Hello World Message Box Example
#include <windows.h>
int main() {
MessageBoxW(NULL, L"Hello, World!", L"Example", MB_ICONINFORMATION);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment