char* strcat(char* dest, const char* src);
Appends the null-terminated string src to dest. The maximum length of the string is not bounded. Returns a pointer to the destination string.
strcpy, strdup, strncpy