close
Espacios de nombres
Variantes

wcscat

De cppreference.com
< c | string | wide
 
 
 
Terminadas en nulo de ancho
Funciones
Original:
Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
De manipulación de caracteres
Original:
Character manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Las conversiones a formatos numéricos
Original:
Conversions to numeric formats
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Cadena de manipulación
Original:
String manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Matriz de manipulación
Original:
Array manipulation
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
 
<tbody> </tbody>
Definido en el archivo de encabezado <wchar.h>
wchar_t *wcscat( wchar_t *dest, const wchar_t *src );
Anexa una cadena ancha a la que apunta a una cadena src gama apuntada por dest. La cadena resultante es ancho terminado en nulo. Si las cadenas se superponen, el comportamiento no está definido .
Original:
Appends a wide string pointed to by src to a wide string pointed to by dest. The resulting wide string is null-terminated. If the strings overlap, the behavior is undefined.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Parámetros

dest -
puntero a la cadena terminada en cero amplio para anexar
Original:
pointer to the null-terminated wide string to append to
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
src -
puntero a la cadena terminada en nulo todo va a copiar
Original:
pointer to the null-terminated wide string to copy from
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Valor de retorno

dest

Ejemplo

Ver también

agrega una cierta cantidad de caracteres anchos de una cadena ancha a otro
Original:
appends a certain amount of wide characters from one wide string to another
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]
copia una cadena ancha a otro
Original:
copies one wide string to another
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(función) [editar]