Namespaces
Variants
Views
Actions

Difference between revisions of "c/string/byte/strcpy"

From cppreference.com
< c‎ | string‎ | byte
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

See also

Template:c/string/byte/dcl list strncpyTemplate:c/string/byte/dcl list memcpy