这个C语言程序咋在VC++6和CodeBlocks上无法运行呢?
解决时间 2021-03-10 14:02
- 提问者网友:自食苦果
- 2021-03-10 04:44
#include
int APIENTRY WinMain(HINSTANCE hinstance,HINSTANCE hPrevinstance,LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL,TEXT("你好"),TEXT("HELLO"),HB_OK);
return 0;
}
感觉这个程序没问题呢?
最佳答案
- 五星知识达人网友:傲气稳了全场
- 2021-03-10 06:20
#include "stdafx.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
MessageBox(NULL,"你好","HELLO",MB_OK);
return 0;
}
全部回答
- 1楼网友:duile
- 2021-03-10 07:57
有什么错误提示么 ?
参看
https://zhidao.baidu.com/question/684590995524042772
我要举报
大家都在看
推荐资讯