función wcslen() en C++ con ejemplos

La función wcslen() se define en el archivo de encabezado cwchar.h . La función wcslen() devuelve la longitud de la string ancha dada.

Sintaxis:

size_t wcslen(const wchar_t* str);

Parámetro: este método toma un solo parámetro str que representa el puntero a la string ancha cuya longitud se va a calcular.

Valor devuelto: esta función devuelve la longitud de una string ancha.

Los siguientes programas ilustran la función anterior: –

Ejemplo 1:-

// c++ program to demonstrate
// example of wcslen() function.
  
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
  
    // Get the string to be used
    wchar_t str[] = L"geeks";
  
    // Get the length of the string using wcslen()
    wcout << L"The length of '" << str
          << L"' is =" << wcslen(str) << endl;
  
    return 0;
}
Producción:

The length of 'geeks' is =5

Ejemplo 2:-

// c++ program to demonstrate
// example of wcslen() function.
  
#include <bits/stdc++.h>
using namespace std;
  
int main()
{
  
    // Get the string to be used
    wchar_t str[] = L"A computer science portal for geeks";
  
    // Get the length of the string using wcslen()
    wcout << L"The length of '" << str
          << L"' is =" << wcslen(str) << endl;
  
    return 0;
}
Producción:

The length of 'A computer science portal for geeks' is =35

=

Publicación traducida automáticamente

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

Categories C++

Deja una respuesta

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