[求助]Dev C++中编译后生成的程序问题?
一个简单的源码文件在vc6中编译后生成的程序与在Dev c中编译后生成的程序在运行时有区别。用vc6编译的运行出来只有一个对话框,而用dev c编译出来的运行时还有一个cmd窗口。这是怎么回事?
源码:
#include "stdafx.h"
#include "windows.h"
int APIENTRY WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine,
int nCmdShow)
{
// TODO: Place code here.
MessageBox(NULL,TEXT("欢迎光临"),TEXT("欢迎"),0);
return 0;
}