LKBEN11170: Howto get the PATH environment variable setting via a c or c++ program
Symptom
You are writing a c/c++ program and want to get some environment variable
Cause
none
Solution
To get to the environment variables you can use the following program and compile it:
#include <stdio.h>
#include <stdlib.h>
int main(void) {
char *myenvvar=getenv("PATH");
printf("The PATH environment variable is set to %s\n",myenvvar);
}
compile with: gcc envvar.c -o envvar
gcc envvar.c -o envvar
myenvar stand for environment variable.
Disclaimer:
The information provided in this document is intended for your information only. Lubby makes no claims to the validity of this information. Use of this information is at own risk!About the Author
Author:
- Keskon GmbH & Co. KGWim Peeters is electronics engineer with an additional master in IT and over 30 years of experience, including time spent in support, development, consulting, training and database administration. Wim has worked with SQL Server since version 6.5. He has developed in C/C++, Java and C# on Windows and Linux. He writes knowledge base articles to solve IT problems and publishes them on the Lubby Knowledge Platform.
Latest update: 01.01.2021