我想在C ++程序中运行DOS命令,但我不知道具体如何。 这是我的代码:
#include "stdafx.h"
#include<dos.h>
void main()
{
system("c:\wmic os get Version");
}
但这就是它所显示的:
1>MSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol _WinMain@16 referenced in function ___tmainCRTStartup
1>C:\Users\rares992\Documents\Visual Studio 2010\Projects\project_scs\Debug\project_scs.exe : fatal error LNK1120: 1 unresolved externals
1>
1>Build FAILED.
1>
1>Time Elapsed 00:00:00.20
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
*我使用Microsoft Visual Studio 2010运行它。
谁能告诉我什么是错的,我该怎么办?三江源。