C ++ Virtual Studio Hello World缺少命令?

时间:2016-12-14 11:57:59

标签: c++ windows visual-studio compiler-errors

规格:Windows 10 Pro,使用的程序:Visual Studio代码; MinGW编译器。

路径设置为C:\ MinGW \ bin。

我刚刚进入C ++,我正在尝试我的hello world脚本:

#include <iostream>
#include <stdio.h>

int main(void)
{
  printf("hello world");
  return 0;
}

当我在Virtual Studios中运行C ++代码时:(CTRl + ALT + N)

[Running] g++ "c:\Users\Myusername\Documents\First Project\helloworld.cpp" && ./a.out

我收到此错误消息: 的&#39;&#39;不被视为内部或外部命令, 可操作程序或批处理文件。

1 个答案:

答案 0 :(得分:0)

您的编译命令错误。

  

g ++ path_to_your_cpp -o runnable_path

示例:

#include <iostream>

int main()
{
    using std::cout;
    using std::endl;

    cout << "Hello world!"<<endl;
    return 0;
}

编译:

g++ main.cpp -o hello_world.exe

执行:

hello_world.exe