a program to in C check if a character is uppercase or lowercase using switch case statement.

Explanation
The program first asks the user to enter a character.
Then the character entered by the user is tested using the case switch operator.
If the character matches any uppercase letter (A-Z), "uppercase" is printed.
If the character matches any lowercase letter (a-z), "The character is lowercase" will be printed.
If the given character does not match to any uppercase or lowercase letters then it prints "This character is neither uppercase nor lowercase."
This program determines whether a character is uppercase or lowercase by using the switch case statement to change C letters.


Previous :-->> 16.Write a program in C to find the absolute value of a number using 'if-else' statements. 
NEXT: 18.Create a program in C to determine the season based on the month using 'if-else' statements.
-->>ALL Conditionl statements Programs