strcpy---copy stringSynopsis
#include <string.h> char *strcpy(char *dst, const char *src);
Description
strcpy copies the string pointed to by src
(including the terminating null character) to the array
pointed to by dst.
Returns
This function returns the initial value of dst.
Portability
strcpy is ANSI C.
strcpy requires no supporting OS subroutines.
Packaging copyright © 1988-2000 OAR Corporation Context copyright by each document's author. See Free Software Foundation for information.