I'm developing with Visual Studio 2019, and would like to be able to compile my C++ program conditionally based on the language standard chosen (C++20, C++17, etc.) from Project Properties -> General Properties -> C++ Language Standard. What gets defined when I set it C++20, for example, so that I can use it as:
#ifdef WHAT_DO_I_PUT_HERE_FOR_C++_20
#else
#ifdef WHAT_DO_I_PUT_HERE_FOR_C++_17
...