文件名: WinHelloWorld.c
代码:
#include <windows.h>
#include <tchar.h>
#pragma comment(lib,"user32.lib")
int WINAPI WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
PSTR szCmdLine, int iCmdShow) {
MessageBox(NULL, _T("Hello, Windows 2003!"), _T("Hello Msg"), MB_OK);
return 0;
}
编译命令: cl /EHsc WinHelloWorld.c
说明:_T为定义在tchar.h里的宏.
一个相当不错的win32入门教程,使用c语言讲解.