0
GGGiovanny Gongora
Convert a string to lower case
0 Comments
# include <iostream> # include <string> using namespace std; void toLowerCase(){ char str1 [30], temp[30]; cout < < "Enter the string:"; cin > > str1; strcpy ( temp, str1); cout < < "strlwr (temp) : " < < strlwr ( temp) < < end1; }