La función wcscpy() se define en el archivo de encabezado cwchar.h . La función wcscpy() se usa para copiar una string de caracteres ancha desde el origen hasta el destino.
Sintaxis:
wchar_t *wcscpy(wchar_t *dest, const wchar_t *src);
Parámetros: este método acepta los siguientes dos parámetros:
- dest: especifica el puntero a la array de destino.
- src: especifica el puntero a la array de origen.
Valor devuelto: la función wcscpy() devuelve el destino modificado.
El siguiente programa ilustra la función anterior: –
Ejemplo:-
// C++ program to demonstrate // example of wcscpy() function. #include <bits/stdc++.h> using namespace std; int main() { // maximum length of the destination string wchar_t dest[40]; // initialize the source string wchar_t src[]=L"A computer science portal for geeks"; // Print the source string wcout << L"Source: " << src << endl; // Print the destination string wcout << L"Destination: " << dest << endl; // Copy source to destination wcscpy(dest, src); // Print the modified destination wcout << L"After modification, destination: " << dest; return 0; }
Producción:
Source: A computer science portal for geeks Destination: After modification, destination: A computer science portal for geeks
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