write a program to convert uppercase characters of a string in lowercase...!
Answers
Answered by
1
Answer:
The upper case alphabets ASCII value range is from 65 to 90.
3) For loop iterates with the structure for(i=0;s[i];i++)
4) After all iterations of for loop, we will get the string with lowercase alphabets
hope it's helpful to you ❤️
Similar questions