标签:data- targe 空间 clu 库函数 rcp 错误 href 否则
C语言 strcpy() 函数用于对字符串进行复制(拷贝)。
头文件:string.h
语法/原型:
char* strcpy(char* strDestination, const char* strSource);
参数说明:
strcpy() 会把 strSource 指向的字符串复制到 strDestination。
必须保证 strDestination 足够大,能够容纳下 strSource,否则会导致溢出错误。
返回值:目的字符串,也即 strDestination。
【实例】使用C语言 strcpy() 函数将字符串 src 复制到 dest。
#include <stdio.h> #include <string.h> int main(){ char dest[10] = { 0 }; char src[10] = { "liangchen" }; strcpy(dest, src); puts(dest); return 0; }
//输出:liangchen
标签:data- targe 空间 clu 库函数 rcp 错误 href 否则
原文地址:https://www.cnblogs.com/liang-chen/p/11405361.html