Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

check string in c

Name: Anonymous 2009-05-24 9:14

what the fast way to check that string contain only characters within some set like "a-z0-9"?

Name: Anonymous 2009-05-25 15:32

>>60
Nested blocks:

int main
                      (
 int argc, char **argv
)
                         {
 int i = 1;
 while
          (
  i < argv
 )
                        {
  printf("%s", argc[i]);
  ++i;
 }
 return 0;
}


I wish to hear your suggestions!!

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List