char* strncpy(char* dest, const char* src, size_t len);
Copies a null-terminated string from src into dest, with maximum length len. Returns a pointer to the destination string.
strcat, strcpy, strdup