strcat( char *target, const char *source )
Concatenates source at the end of target.
source
target
char *strcat( char *target, const char *source ) { char * const end = strchr( target, '\0' ); strcat( end, source ); return target; }