Computer Science, asked by vanshgupta042, 8 months ago

write a program to accept a charactee​

Answers

Answered by sukhrandhawa1983
0
Microsoft


Hope it will help you
Answered by riya5395
1

Answer:

if((ch >= 97 && ch <= 122) || (ch >= 65 && ch <= 90)) printf("The entered character %c is an Alphabet",ch); else printf("The entered character %c is not an Alphabet",ch)

Similar questions