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 variables value in C

2 Answers

0 votes
#include <stdio.h>
#include <stdlib.h>

// Windows

int main(void)
{
    char* p = getenv("PATH");

    if (p)
        printf("PATH = %s\n", p);
}



/*
run:

PATH = C:\Program Files\Microsoft\jdk-11.0.12.7...;C:\Program Files\NVIDIA GPU Computing...

*/

 



answered Feb 9, 2023 by avibootz
0 votes
#include <stdio.h>
#include <stdlib.h>

// Linux
 
int main(void)
{
    char* p = getenv("PATH");
 
    if (p)
        printf("PATH = %s\n", p);
}
 
 
 
/*
run:
 
PATH = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

*/

 



answered Feb 9, 2023 by avibootz

Related questions

1 answer 149 views
2 answers 151 views
151 views asked May 4, 2021 by avibootz
1 answer 127 views
1 answer 139 views
139 views asked Jan 13, 2017 by avibootz
1 answer 131 views
131 views asked Aug 24, 2020 by avibootz
1 answer 154 views
2 answers 107 views
107 views asked Nov 18, 2023 by avibootz
...