学习windows程序设计--hello world

大家猜猜这个程序的运行结果:

#include <windows.h>


int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,
                   PSTR szCmdLine,int iCmdShow)
{
    MessageBox(NULL,TEXT("hello1"),TEXT("hello2"),0);
    return 0;
}


你可能感兴趣的:(windows,null,winapi)