Configure Visual Studio Code for Microsoft C++
code.visualstudio.com › docs › cppConfigure VS Code for Microsoft C++. In this tutorial, you configure Visual Studio Code to use the Microsoft Visual C++ compiler and debugger on Windows. After configuring VS Code, you will compile and debug a simple Hello World program in VS Code. This tutorial does not teach you details about the Microsoft C++ toolset or the C++ language.
C++ programming with Visual Studio Code
code.visualstudio.com › docs › languagesThis will compile helloworld.cpp and create an executable file called helloworld.exe, which will appear in the File Explorer. Run Hello World # From a command prompt or a new VS Code Integrated Terminal, you can now run your program by typing ".\helloworld". If everything is set up correctly, you should see the output "Hello World".