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 182 views
2 answers 179 views
179 views asked May 4, 2021 by avibootz
1 answer 145 views
1 answer 160 views
160 views asked Jan 13, 2017 by avibootz
1 answer 151 views
151 views asked Aug 24, 2020 by avibootz
1 answer 183 views
2 answers 128 views
128 views asked Nov 18, 2023 by avibootz
...