C Program To Check For Alphabet, Number or Special Symbol
Satish B
http://technotip.com/7178/c-program-to-check-for-alphabet-number-and-special-symbol/
Any character is entered through the keyboard, write a C program to determine whether the character entered is a capital letter, a small case letter, a digit or a special symbol.
The following table shows the range of ASCII values for various characters: Character A – Z : ASCII Value 65 – 90 Character a – z : ASCII Value 97 – 122 Character 0 – 9 : ASCII Value 48 – 57 Special Symbol : ASCII Value 0 – 47, 58 – 64, 91 – 96, 123 – 127
C Programming Interview / Viva Q&A List http://technotip.com/6378/c-programming-interview-viva-qa-list/
C Programming: Beginner To Advance To Expert http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/ ... https://www.youtube.com/watch?v=NBcG-r0P9P8
10269437 Bytes