std::wcscat
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. |
Déclaré dans l'en-tête <cwchar>
|
||
wchar_t *wcscat( wchar_t *dest, const wchar_t *src ); |
||
Ajoute une chaîne large pointé par
src
à une chaîne large pointé par dest
. La chaîne résultante est large se terminant par null. Si les cordes se chevauchent, le comportement est indéfini . 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.
You can help to correct and verify the translation. Click here for instructions.
Sommaire |
[modifier] Paramètres
dest | - | pointeur vers la chaîne se terminant par null gamme de joindre à
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 | - | pointeur vers la chaîne se terminant par null gamme à copier
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. |
[modifier] Retourne la valeur
dest
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] Voir aussi
ajoute une certaine quantité de caractères de l'ensemble une chaîne à une autre échelle 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. (fonction) | |
copie une chaîne large à l'autre 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. (fonction) | |
C documentation for wcscat
|