Copies a string.
#include <string.h>
char *strcpy (
char *dst,
const char *src);
(OUT) Points to the array into which to copy the string.
(IN) Points to the string to be copied.
Returns dst.
Copying of overlapping objects is not guaranteed to work properly. See memmove to copy objects that overlap.