How to use getenv() to get the environment variable list in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>
 
int main(void)
{
    char *env_path = getenv("PATH");
    if (env_path)
        printf("PATH = %s\n", env_path);
        
    return 0;
}

/*
run:
 
PATH = C:\ProgramData\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Win
dows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;c:\Program Files\
Java\jdk1.8.0_91\bin\;C:\Program Files\CodeLite

*/

 



answered Aug 27, 2016 by avibootz

Related questions

2 answers 138 views
1 answer 173 views
2 answers 175 views
175 views asked May 4, 2021 by avibootz
2 answers 123 views
123 views asked Nov 18, 2023 by avibootz
1 answer 139 views
1 answer 156 views
156 views asked Jan 13, 2017 by avibootz
2 answers 103 views
...