strcpy
De cppreference.com
Déclaré dans l'en-tête <string.h>
|
||
char *strcpy( char *dest, const char *src ); |
||
Copie la chaîne d'octets pointée par src
dans la chaîne d'octets pointée par dest
.
Si les chaînes se chevauchent, le comportement est indéfini.
Sommaire |
[modifier] Paramètres
dest | - | pointeur vers la chaîne d'octets vers laquelle copier |
src | - | pointeur vers la chaîne d'octets à caractère nul final à copier |
[modifier] Retourne la valeur
dest
[modifier] Exemple
This section is incomplete Reason: no example |
[modifier] Voir aussi
copie d'un certain nombre de caractères d'une chaîne à l'autre Original: copies a certain amount of characters from 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. (fonction) | |
une copie du tampon à l'autre Original: copies one buffer 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 strcpy
|