
(That’s Visual Studio Code and not Visual Studio, which is slightly different. For example, Visual Studio Code is one of the most popular text editors used by developers. There are a number of text editors to choose from. The best of both worlds! Choosing a Text Editor While the text editor we recommend isn’t considered an IDE, it has many IDE-like features that make life as a developer easier without needing a lot of resources that an IDE usually requires. You may also have read or heard about IDEs, or “integrated development editors.” An IDE allows you to not only edit, but also compile, and debug your code through one application or interface. Key shortcuts, or combinations, for faster development.


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.In this article, we will go over the steps necessary to download a popular text editor called Visual Studio Code, also referred to as “VS Code.” By the end of the article you will be able to create a folder in Visual Studio Code that contains an HTML document that you can open in your web browser. 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. 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". I just followed the set up for C / C++ in VS code ( ), I found two strange things:
