Write a function in c++
which converts upper case letters to lower case (without
using library function).
Answers
Answered by
0
This program will read a string from the user (string can be read using spaces too), and convert the string into lowercase and uppercase without using the library function.
Here we implemented two functions
stringLwr() - it will convert string into lowercase
stringUpr() - it will convert string into uppercase
Similar questions