3.5. strcpy
char *strcpy( char * restrict s1, const char * restrict s2);strcpy copies string s2 to string s1, including '\0', and returns s1.
char *strcpy( char * restrict s1, const char * restrict s2);strcpy copies string s2 to string s1, including '\0', and returns s1.