C program to find given string has alphabets, digits and special characters in it

3 answers

there are lots of snippets of C code online. google is your friend.
but i didn't find any solution for it
If you know the ascii code,
48-57 0-9
65-90 A-Z
97-122 a-z
Most of the remainder (0-127) are special characters, except space (32) and perhaps other white space characters.

It will consist of one while loop to check each of the above.

For the extended ascii table, see
http://www.ascii-code.com/
Similar Questions
  1. Assume s is a string of lower case characters.Write a program that counts up the number of vowels contained in the string s.
    1. answers icon 1 answer
  2. Assume s is a string of lower case characters.Write a program that counts up the number of vowels contained in the string s.
    1. answers icon 2 answers
    1. answers icon 3 answers
  3. Assume s is a string of lower case characters.Write a program that prints the number of times the string 'bob' occurs in s. For
    1. answers icon 2 answers
more similar questions