学习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;
}
最后更新:2017-04-02 15:15:14
大家猜猜这个程序的运行结果:
#include <windows.h>
最后更新:2017-04-02 15:15:14