开始VC++之旅。Hello World !
#include <windows.h>
int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
MessageBox(NULL,"Hello,world!---My first Vc++ app","VC++ is so cool !",MB_OK | MB_ICONINFORMATION);
return 0;
}

151

被折叠的 条评论
为什么被折叠?



