Skip to content

strcpy : copy string

#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.
---
**Authoritative source**: BUSMASTER DITA help source `strcpy.dita`, compiled into `BUSMASTER.CHM` with the application.