What I am trying to do is be able to search for a variable starting with a chosen character using the <string.h> header.

The code so for......

insert
Code:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char **argv, char** envp) 
{
  char** en;
  for (en = envp; *en != 0; en++)
  {
    char* ce = *en;
    printf("%s\n", ce);       
  }
  system("PAUSE");    
  return 0;
}
Any one help?