strcpy - copy string
Standard C Library (libc, -lc)
#include <string.h>
char *
strcpy(char *dest,
const char *src);
The contents of the string src are copied into dest.
If dest does not point to enough space to hold the string, the resulting behavior is undefined.
If the memory areas pointed to by dest and src overlap, the behavior is undefined.
strcpy returns dest.