strcpy(destination,source)函数将源字符串(source)复制到目的(destination)字符串中。
使用示例
创建一个源文件:string_strcpy.c,其代码如下所示
-
#include
<stdio.h>
void main()
{
char ch[20] = { 'u', 'm', 'l', '.', 'o', 'r',
'g', '.', 'c', 'n', '\0' };
char ch2[20];
strcpy(ch2, ch);
printf("Value of second string is: %s
\n", ch2);
}
|
执行上面示例代码,得到以下结果 -
Value of
second string is: uml.ogr.cn |
|
946 次浏览 |
8次 |
|
捐助 |
|
|
|
|
|