convert all characters in string to uppercase c 2b 2b

Solutions on MaxInterview for convert all characters in string to uppercase c 2b 2b by the best coders in the world

showing results for - "convert all characters in string to uppercase c 2b 2b"
Gert
18 Mar 2020
1transform(str.begin(), str.end(), str.begin(), ::toupper);