strcpy( char *target, const char *source )
strcpy copies from one string to another.
strcpy
char *strcpy( char *target, const char *source ) { char *p = target; while ( *p = *source ) { source++; p++; } return target; }