strcpy函数用于将一个字符串复制到另一个字符串中。用C语言表示
时间: 2024-05-14 18:15:21 浏览: 246
详解c语言中的 strcpy和strncpy字符串函数使用
5星 · 资源好评率100%
strcpy函数的C语言表示如下:
```c
char* strcpy(char* destination, const char* source)
{
char* ptr = destination;
while (*source != '\0') {
*destination = *source;
destination++;
source++;
}
*destination = '\0';
return ptr;
}
```
其中,destination表示目标字符串(即要将source复制到哪个字符串中),source表示源字符串(即要复制的字符串)。函数通过循环将source中的每个字符复制到destination中,并在最后添加一个'\0'表示字符串结束。函数返回一个指向destination字符串的指针。注意,destination必须具有足够的空间来容纳source字符串。
阅读全文