Created
October 27, 2023 11:20
-
-
Save JJK96/173b5fea4bfa2dc0f792373549449365 to your computer and use it in GitHub Desktop.
Windows application that sends a popup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <windows.h> | |
#pragma comment(lib,"User32") | |
void main() { | |
MessageBox(NULL, "Message", "Caption", MB_OK); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment