- //hello.cpp -A sample "Hello World" program.
- #include <windows.h>
- // program entry point
- int WINAPI WinMain (HINSTANCE hInstance,HINSTANCE hPrevInstance,LPWSTR lpCmdLine,
- int nShowCmd)
- {
- MessageBox(NULL,TEXT("Hello world!"),TEXT("fhello"),MB_OKCANCEL
- );
- return 0;
- }
English
