std::wcscat
Da cppreference.com.
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
Elemento definito nell'header <cwchar>
|
||
wchar_t *wcscat( wchar_t *dest, const wchar_t *src ); |
||
Aggiunge una stringa larga puntata da
src
una stringa larga puntata da dest
. La stringa risultante è ampio con terminazione null. Se le stringhe si sovrappongono, il comportamento non è definito. 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.
Indice |
[modifica] Parametri
dest | - | puntatore alla stringa con terminazione null larga da aggiungere a
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 | - | puntatore alla stringa con terminazione null ampia da cui copiare
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. |
[modifica] Valore di ritorno
dest
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
aggiunge una certa quantità di caratteri estesi da una stringa larga all'altro 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. (funzione) | |
copia una stringa larga ad un altro 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. (funzione) | |
C documentation for wcscat
|