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 175 views
2 answers 175 views
175 views asked May 4, 2021 by avibootz
1 answer 139 views
1 answer 156 views
156 views asked Jan 13, 2017 by avibootz
1 answer 145 views
145 views asked Aug 24, 2020 by avibootz
1 answer 173 views
2 answers 123 views
123 views asked Nov 18, 2023 by avibootz
...