Write a program to find that the given input is a character,
letter, digit?
Answers
Answered by
1
Answer:
First check if character is alphabet or not. A character is alphabet if((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')) . Next, check condition for digits. A character is digit if(ch >= '0' && ch <= '9') .
Explanation:
please make me as brainlist
Similar questions