windows echo environment variable

C++
// In a Windows console (cmd)
// All environnement variables:
set
// A single one:
set MY_VAR
// Or:
echo %MY_VAR%

// Sets an environment variable called MY_VAR
set MY_VAR=hello
   
// Display
set MY_VAR
-> MY_VAR=hello
   
// Unset an environment variable
set MY_VAR=
   
// Display
set MY_VAR
-> Environment variable MY_VAR not defined

// Display the PATH environment variable
echo %PATH%
-> PATH=xxxxxxx
Source

Also in C++: