

Sorry if I was too long, any suggestions?ĮDIT: looking through the sample codes for the other files I noticed some differences in c_cpp_properties. Eclipse, 6, 154 Editing code C++ basic Hello World program, 101 compiler, 100101 conditional breakpoints, 101 debugger, 101 expression evaluation. Create public & corporate wikis Collaborate to build & share knowledge VS Code is now configured to use the Microsoft C++ compiler. The solution above leaves me with just this in the terminal: Executing task: C:\MingGW64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw32\bin\g++.exe -g -o helloworld helloworld.cpp The terminal process terminated with exit code: 1 without any output nor the helloworld file, the source code is right, plus it comes directly from the official website. Now search for the extension C/C++ for Visual Studio Code and install it.

Click open the Extension Manager on the VS Code sidebar or use the shortcut Ctrl+Shift+X. In the "tasks.json" the code has this "command": "g++" which is left like that in the site, running the sample source code with that produces this error: so I followed the solution suggested there and put "command": "C:\\MinGW64\\i686-8.1.0-posix-dwarf-rt_v6-rev0\\mingw32\\bin\\g++.exe". First well install the C/C++ for Visual Studio Code extension that adds extra enhancement and support for C/C++ development. I just followed the set up for C / C++ in VS code ( ), I found two strange things:
