Synopsis
char *strcpy(char *s1,
             const char *s2);
Description

strcpy copies the string pointed to by s2 (including the terminating null character) into the array pointed to by s1. The behavior of strcpy is undefined if copying takes place between objects that overlap.

strcpy returns the value of s1.