Computer Science, asked by hridyajagtap1134, 6 months ago

Write a program to define a function void Show(char ch) to print whether the character argument ch is an uppercase letter or a small letter or a letter/digit or space character.

Plz Answer it

Answers

Answered by hasna20
0

Answer:

Given a character, the task is to check 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 char

Similar questions