How do I set an environment variable in C++?

  • They do not need to persist past program execution
  • They only need to be visible in the current process
  • Preference for platform independent but for my problem only needs to work on Win32/64

Thanks

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

NAME

   putenv - change or add an environment variable

SYNOPSIS

   #include <stdlib.h>

   int putenv(char *string);

DESCRIPTION The putenv() function adds or changes the value of environment variables. The argument string is of the form name=value. If name does not already exist in the environment, then string is added to the environment. If name does exist, then the value of name in the environment is changed to value. The string pointed to by string becomes part of the environment, so altering the string changes the environment.

On Win32 it's called _putenv I believe.

See SetEnvironmentVariable also if you're a fan of long and ugly function names.

link|improve this answer
2  
Note to questioner - putenv is also supported in Win32. – anon May 22 '09 at 19:16
8  
Can we please use proper C++ header names? <cstdlib> is appropriate (yeah, I know...it's a hangup of mine). – Harper Shelby May 22 '09 at 19:18
1  
It is C as a Lord God intended. – alamar May 22 '09 at 19:19
3  
stlib.h is a proper C header file - the question is tagged as C – anon May 22 '09 at 19:20
1  
"Sets the contents of the specified environment variable for the current process." – alamar May 22 '09 at 20:21
show 4 more comments
feedback

I'm not positive envitonment variables is what you need, since they aren't going to be used outside of this run of the program. No need to engage the OS.

You might be better off having a singleton class or a namespace that holds all these values, and initialize them when you start the program.

link|improve this answer
They will only be visible to child processes, and putenv() usually doesn't need to talk to the OS at all. – RBerteig May 22 '09 at 20:23
feedback
#include<stdio.h>
#include<unistd.h>
#include<stdlib.h>
#include<string.h>
    main(int argc,char *argv[])
    {

    char *var,*value;
        if(argc==1||argc>3)
        {
        fprintf(stderr,"usage:environ variables \n");
        exit(0);
        }
    var=argv[1];
    value=getenv(var);
    //---------------------------------------
        if(value)
        {
        printf("variable %s has value %s \n",var,value);
        }
        else 
        printf("variable %s has no value \n",var);  
        //----------------------------------------
        if(argc==3)
        {
        char *string;
        value=argv[2];
        string=malloc(strlen(var)+strlen(value)+2);
            if(!string)
            {
            fprintf(stderr,"out of memory \n");
            exit(1);
            }   
            strcpy(string,var);
            strcat(string,"=");
            strcat(string,value);
            printf("calling putenv with: %s \n",string);
            if(putenv(string)!=0)
            {
            fprintf(stderr,"putenv failed\n");
            free(string);
            exit(1);
            }
                        value=getenv(var);
            if(value)
                 printf("New value of %s is %s \n",var,value);
            else
            printf("New value of %s is null??\n",var);
        }     
        exit(0);

    }//----main





/* commands to execure on linux   compile:- $gcc -o  myfile myfile.c
                      run:- $./myfile xyz
                                            $./myfile abc
                                            $./myfile pqr
*/
link|improve this answer
How does this code answer the question? Why have you shared this with us? – Cody Gray Apr 27 '11 at 14:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.