<b>char *strcpy(char *s, char *t)</b>




Document: The C Standard Library

next char *strcat(char *schar *t)
up String Functions: string.h
gif String Functions: string.h

char *strcpy(char *s, char *t)

Copy the string pointed to by t to that pointed to by s. The return value is simply s (i.e. a pointer to the destination string); this is sometimes convenient in forming more complex expressions, but, more usually, it can be ignored (discarded).



McMullin@eeng.dcu.ie
Fri Mar 29 14:35:38 GMT 1996