Ejemplo 1: convertir todos los caracteres en una cadena a mayúsculas c ++
transform(str.begin(), str.end(), str.begin(), ::toupper);
Ejemplo 2: c ++ char a mayúsculas
char choice;
// it will instantly transform it to upper case without the need
// to convert it to int first
choice = (char)toupper(choice);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)