std::strcat
De cppreference.com
![]() |
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
Defined in header <cstring>
|
||
char *strcat( char *dest, const char *src ); |
||
Anexa una cadena de bytes que apunta a una cadena
src
byte apuntado por dest
. La cadena de bytes resultante es terminada en nulo. Si las cadenas se superponen, el comportamiento no está definido . Original:
Appends a byte string pointed to by
src
to a byte string pointed to by dest
. The resulting byte 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.
You can help to correct and verify the translation. Click here for instructions.
Contenido |
[editar] Parámetros
dest | - | puntero a la cadena de bytes terminada en cero para anexar
Original: pointer to the null-terminated byte 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 null byte a copiar
Original: pointer to the null-terminated byte 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. |
[editar] Valor de retorno
dest
[editar] Ejemplo
This section is incomplete Reason: no example |
[editar] Ver también
concatena una cierta cantidad de caracteres de dos cadenas Original: concatenates a certain amount of characters of two strings The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (función) | |
copia una cadena a otra Original: copies one 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) | |
C documentation for strcat
|