hello.cpp
上传用户:yeszjc
上传日期:2022-05-30
资源大小:1423k
文件大小:0k
源码类别:

串口编程

开发平台:

C/C++

  1. //hello.cpp -A sample "Hello World" program.
  2. #include <windows.h>
  3. // program entry point
  4. int WINAPI WinMain (HINSTANCE hInstance,HINSTANCE hPrevInstance,LPWSTR lpCmdLine,
  5. int nShowCmd)
  6. {
  7. MessageBox(NULL,TEXT("Hello world!"),TEXT("fhello"),MB_OKCANCEL 
  8. );
  9. return 0;
  10. }