Concatenates one null-terminated string to another (src is added to the end of
dst).
Syntax
void stcat(char *src, char *dst);
- src is a pointer to the start of the string that is put at the end of the destination
string.
- dst is a pointer to the start of the null-terminated destination string.
- The resulting string is dstsrc.