write a program to accept a charactee
Answers
Answered by
0
Microsoft
Hope it will help you
Hope it will help you
Answered by
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