Ich habe mir von 2 unterschiedlichen C compilern ein hello world Programm erstellen lassen mit Textausgabe per Msgbox.
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Goodbye, cruel world!"...