大家好,本人想用VS2015编写一个无窗口的C语言程序,问一下该怎么创建工程?
解决方案
5
菜单栏:开始–>文件–>新建项目 选择visual C++里面的win32控制台项目
5
Windows Application
5
Win32 项目
5
#include <windows.h> #include <tchar.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { MessageBox(NULL,_T("OK"),_T("Test"),MB_OK);//假如没这句,就不会有任何窗口。 return 0; }