Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

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 123 views
1 answer 154 views
2 answers 151 views
151 views asked May 4, 2021 by avibootz
2 answers 107 views
107 views asked Nov 18, 2023 by avibootz
1 answer 127 views
1 answer 139 views
139 views asked Jan 13, 2017 by avibootz
...