Write a program to count lower letters of a given string
Answers
Answered by
1
Answer:
❤ANSWER ❤
- Scan string str from 0 to length-1.
- check one character at a time on the basis of ASCII values. if(str[i] >= 65 and str[i] <=90), then it is uppercase letter, if(str[i] >= 97 and str[i] <=122), then it is lowercase letter, if(str[i] >= 48 and str[i] <=57), then it is number, ...
- Print all the counters.
Explanation:
IT'S PANDIT MANISH ...xd....
Answered by
4
hope this answer helps you ☺☺☺☺
Attachments:
Similar questions