How to display all environment variables and its values (C/C++)

#include<stdio.h>
int main(int argc, char* argv[], char* env[])
{
    int i=0;
    while(env[i])
    {
        printf("%s\n",env[i]);
        i++;
    }

    return 0;
}

Comments

Popular posts from this blog

Digital Logic

Visual Studio 2008 MFC: How to embed a dialog to a dialog

How to statically link applications to wxWidgets via Visual Studio 2008 and in Linux