strcpy

Defined in string.h

Copies a null terminated string from source (src) to destination (dst).

char* strcpy(char* dst, const char* src)

dst – a char pointer to the destination string
src – a char pointer to the source string
return – a char pointer to the destination string

Note: this function does not check whether dst has enough space to store the string!