學習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