Help for this page

Select Code to Download


  1. or download this
    #include <stdio.h>
    int main(int argc, char** argv, char** envp) {
        while (*envp++) {
            printf("%s\n", envp[-1]);
        }
    }