C Program To Check Whether a Character is an Alphabet or Not
Satish B
http://technotip.com/6903/c-program-to-check-whether-a-character-is-an-alphabet-or-not/
Lets write a C program to check if user input character is an alphabet or not.
In C programming language, every character variable holds an ASCII value rather than the character itself.
Note: ASCII value range of lower case alphabets: ASCII value of a is 97. ASCII value of b is 98. ASCII value of c is 99. and so on till z .. ASCII value of z is 122.
ASCII value range of upper case alphabets: ASCII value of A is 65. ASCII value of B is 66. ASCII value of C is 67. and so on till z .. ASCII value of Z is 90.
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=uY3d6SXBBNE
5293219 Bytes