stcat()

Concatenates one null-terminated string to another (src is added to the end of dst).

Syntax

void stcat(char *src, char *dst);
  1. src is a pointer to the start of the string that is put at the end of the destination string.
  2. dst is a pointer to the start of the null-terminated destination string.
  3. The resulting string is dstsrc.