Skip to content

Instantly share code, notes, and snippets.

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