The stcat() function

The stcat() function concatenates one null-terminated string to the end of another.

Syntax

void stcat(s, dest)
   char *s, *dest;
s
A pointer to the start of the string to place at the end of the destination string.
dest
A pointer to the start of the null-terminated destination string.