C++ Programming/Code/Standard C Library/Functions/strcpy

From Wikibooks, open books for an open world
Jump to navigation Jump to search

strcpy[edit | edit source]

Syntax
#include <cstring>
char *strcpy( char *to, const char *from );

The strcpy() function copies characters in the string 'from to the string to, including the null termination. The return value is to.

Note that strcpy() does not perform bounds checking, and thus risks overrunning from or to. For a similar (and safer) function that includes bounds checking, see strncpy().

Related topics
memcpy - strcat - strchr - strcmp - strncmp - strncpy