covert the string into upper and lower case using c++ program
Answers
Answered by
4
Answer:
transform : Performs a transformation on given array/string. toupper(int c) : Returns upper case version of character c. If c is already in uppercase, return c itself. tolower(int c) : Returns lower case version of character c.
Similar questions