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