strcpy

Name

strcpy -- copies a null-terminated string

Synopsis

void strcpy(char * dest, char * src);

Description

This function copies the null-terminated string src, including terminating null, to successive elements of the array of char pointed to by dest.