Skip to content

Instantly share code, notes, and snippets.

Created July 24, 2014 08:48
#include<stdio.h>
extern char** environ;
int main(int argc, char* argv[]) {
int i;
for(i=0; environ[i]!=NULL; i++) {
printf("%s\n",environ[i]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment