C语言:strcpy()的例子
本帖最后由 划句顾 于 2021-5-26 10:51 编辑strcpy() 详细请看这里C 库函数 - strcpy()
/************************************
@fuction:strcpy把含有'\0'结束符的字符串复制到另一个地址空间.
@time :2021/4/27
@author :LaoGu
************************************/
#include<stdio.h>
int main()
{
char s1="Janpan",s2[]="China";
printf("s1 = %s\n",s1);
printf("strcpy(s1,s2) = %s\n",strcpy(s1,s2));
printf("s1 = %s\n",s1);
return 0;
}
页:
[1]