Difference between revisions of "c/string/byte/strcpy"
From cppreference.com
m (Text replace - "/sidebar" to "/navbar") |
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, zh) |
||
Line 32: | Line 32: | ||
{{dcl list end}} | {{dcl list end}} | ||
+ | [[de:c/string/byte/strcpy]] | ||
+ | [[es:c/string/byte/strcpy]] | ||
+ | [[fr:c/string/byte/strcpy]] | ||
+ | [[it:c/string/byte/strcpy]] | ||
+ | [[ja:c/string/byte/strcpy]] | ||
+ | [[pt:c/string/byte/strcpy]] | ||
[[ru:c/string/byte/strcpy]] | [[ru:c/string/byte/strcpy]] | ||
+ | [[zh:c/string/byte/strcpy]] |
Revision as of 16:45, 2 November 2012
Defined in header <string.h>
|
||
char *strcpy( char *dest, const char *src ); |
||
Copies the byte string pointed to by src
to byte string, pointed to by dest
.
If the strings overlap, the behavior is undefined.
Contents |
Parameters
dest | - | pointer to the byte string to copy to |
src | - | pointer to the null-terminated byte string to copy from |
Return value
dest
Example
This section is incomplete Reason: no example |
See also
C++ documentation for strcpy
|