Character string concatenation
char *strcat(char *dst, const char *src);
This function concatenates the duplication of the character string indicated by src to the end of the character string indicated by dst, including the null character (\0). The first character of src overwrites the null character (\0) at the end of dst.