#include int main(int argc, char *argv[], char *envp[]) { for (int i = 0; envp[i] != NULL; ++i) printf("envp[%02i] = %s\n", i, *envp++); }