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/
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/