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 implement mouse drag using wxWidgets

How to put an image to wxPanel using wxWidgets