所以我正在尝试在 VS Code 中设置 C/C++。我安装了mingw,VSCode和Code Runner Code Runner中的C/C++ Extension打开了以下设置: RunInTerminal
这是我尝试运行的代码:
#include<stdio.h>
int main()
{
int age;
printf("Enter age\n");
scanf("%d", &age);
printf("Age is %d", age);
return 0;
}
当我单击 Code-Runner 中的运行按钮时,终端会生成以下输出:
$ cd "c:\Users\alexa\Desktop\Projekte\C\" && g++ test.cpp -o test && "c:\Users\alexa\Desktop\Projekte\C\"test
bash: cd: c:\Users\alexa\Desktop\Projekte\C" && g++ test.cpp -o test && c:UsersalexaDesktopProjekteC"test: No such file or directory
我知道问题在于 bash 中使用的路径中缺少反斜杠
c:UsersalexaDesktopProjekteC"测试
但我找不到解决方法。我在 Windows 10 上