función towupper() en C/C++

towupper () es una función integrada en C/C++ que convierte el carácter ancho dado en mayúsculas. Se define dentro del archivo de encabezado cwctype de C++.

Sintaxis :

wint_t towupper( wint_t ch )

Parámetro : La función acepta un solo parámetro obligatorio ch que especifica el carácter ancho que tenemos que convertir a mayúsculas.

Valor devuelto : la función devuelve dos valores como se muestra a continuación.

  • Si el ch tiene una versión en mayúsculas, entonces se convierte en ella.
  • Si no es así, no ocurre ninguna modificación.

Los siguientes programas ilustran la función anterior.

Programa 1 :

// Program to illustrate
// towupper() function
#include <cwchar>
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
  
    wchar_t str[] = L"GeeksforGeeks";
    wcout << L"The uppercase version of \"" 
          << str << L"\" is ";
  
    for (int i = 0; i < wcslen(str); i++)
        // Function to convert the character
        // into the uppercase version, if exists
        putwchar(towupper(str[i]));
  
    return 0;
}
Producción:

The uppercase version of "GeeksforGeeks" is GEEKSFORGEEKS

Programa 2 :

// Program to illustrate
// towupper() function
#include <cwchar>
#include <cwctype>
#include <iostream>
using namespace std;
int main()
{
  
    wchar_t str[] = L"hello Ishwar 123!@#";
    wcout << L"The uppercase version of \"" 
          << str << L"\" is ";
  
    for (int i = 0; i < wcslen(str); i++)
        // Function to convert the character
        // into the uppercase version, if exists
        putwchar(towupper(str[i]));
  
    return 0;
}
Producción:

The uppercase version of "hello Ishwar 123!@#" is HELLO ISHWAR 123!@#

Publicación traducida automáticamente

Artículo escrito por IshwarGupta y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *