01 Windows编程——Hello World
Posted kelamoyujuzhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了01 Windows编程——Hello World相关的知识,希望对你有一定的参考价值。
源码
#include "stdafx.h" #include<Windows.h> int WINAPI WinMain(HINSTANCE hInst,HINSTANCE tmp,LPSTR strCmd,int nShow) { MessageBox(NULL, "Hello World!", "Title", 0); }
报 类型参数不匹配 bug
原因是字符集设置有问题,改成ASCII
修改后不再报 类型参数不匹配,build一下,build失败
原因是入口函数没有设置正确。WIndows窗体程序的入口函数是WinMain。控制台程序的入口函数是main。
修改如下
此时可以正常运行
以上是关于01 Windows编程——Hello World的主要内容,如果未能解决你的问题,请参考以下文章