-1
I’m trying to run a code on C in the Visual Studio Code with the extent Code Runner but I’m not getting it. I’ve installed the Mingw correctly, I can verify it in cmd via
g++ --version
But I still can not run C in Vscode. I know that VS is not the most indicated but wanted to centralize my work in a single editor.
The message that appears when I try to run is the following:
[Running] cd "c:\Users\henrique\Documents\_minhas-coisas\_Faculdade\TesteVSCode\C\" &&
gcc first.c -o first &&
"c:\Users\henrique\Documents\_minhas-coisas\_Faculdade\TesteVSCode\C\"first
'gcc' n�o � reconhecido como um comando interno
ou externo, um programa oper�vel ou um arquivo em lotes.
[Done] exited with code=1 in 0.188 seconds
The First
is the name of arquivo.c
Try with the extension c/c++ this plugin ... in the documentation is indicated it instead of the core Runner. tried on linux with gcc and it worked well.
– stack.cardoso