strcpycp函数的使用0416
#include<stdio.h>
#include<string.h>
main()
{
char a[20];
printf("a[20]:%s
",strcpy(a,"ert"));
char b[300],c[500];
puts("please input values:
");
fgets(b,1000,stdin);
printf("b[300] len:%d
",sizeof(b));
if(b[0]=="q")
{
int x,y;
for(x=0;x<300;x++)
{
c[x]=b[x];
}
printf("c[500]:%s
",c);
}
else
{
puts("else");
}
}
以上是 strcpycp函数的使用0416 的全部内容, 来源链接: utcz.com/z/535479.html