English, asked by ramachandran7788031, 9 months ago

covert the string into upper and lower case using c++ program​

Answers

Answered by itzdevilking1
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