For upper case letter ,the code will be
Answers
Answered by
0
Answer:
whether the given character is in upper case, lower case or non-alphabetic character
Examples:
Input: ch = 'A'
Output: A is an UpperCase character
Input: ch = 'a'
Output: a is an LowerCase character
Input: ch = '0'
Output: 0 is not an aplhabetic character
Similar questions