Eli5: Can Somebody explain to me what are environment variables? In windows, mac, when use them and examples like if i was 5

477 views

Eli5: Can Somebody explain to me what are environment variables? In windows, mac, when use them and examples like if i was 5

In: 3

4 Answers

Anonymous 0 Comments

They’re global data that a program might want to know. Often paths common programs.

“windir” for example, is the path to the Windows install, on my PC that is “C:WINDOWS”

The Environment variable “NUMBER_OF_PROCESSORS” on my PC is “16”

So, instead of needing to figure out the directory a programmer can just use “windir” and get the Windows path.

You are viewing 1 out of 4 answers, click here to view all answers.