#include #include void main(void) { char text[] = "This is MinGW hello world!"; puts(text); MessageBox(0, text, "some caption", MB_OK | MB_ICONINFORMATION); //For info about MessageBox: http://msdn.microsoft.com/en-us/library/ms645505(VS.85).as }