Ask Your Question

Revision history [back]

  1. Install the latest version of Visual Studio Code (VSCode) and the C++ Extension.

  2. Open VSCode and open the Command Palette by pressing "Ctrl+Shift+P" (Windows) or "Cmd+Shift+P" (Mac).

  3. Type "C++: Edit Configurations" in the Command Palette and select it.

  4. This opens the ccppproperties.json file where you can add the necessary configurations to enable C++17 support. Find the "configurations" section in the file and add the following lines of code:

"cppStandard": "c++17",
"intelliSenseMode": "${default}"
  1. Save the file and exit.

  2. Open your C++17 project in VSCode and build it.

  3. Now you should be able to use C++17 features in your code.