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

Creating tray application and popup context menu in Windows

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

How to put an image to wxPanel using wxWidgets