windows_app1.c 312 B

1234567891011
  1. #include <windows.h>
  2. int APIENTRY WinMain( HINSTANCE hInstance,
  3. HINSTANCE hPrevInstance,
  4. LPSTR lpCmdLine,
  5. int nCmdShow)
  6. {
  7. MessageBoxA(NULL, "\tHello World!", "My first Windows app", MB_OK);
  8. return 0;
  9. }