#include <windows.h>
#include <string>
int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
std::string str = "C/C++ Win32";
MessageBoxA(0, str.c_str(), "Info", MB_OK);
/*
int MessageBoxA(
[in, optional] HWND hWnd,
[in, optional] LPCSTR lpText,
[in, optional] LPCSTR lpCaption,
[in] UINT uType
);
*/
}
/*
run:
C/C++ Win32
*/