C++程序题求解答!谢谢!
编写程序,实现复制字符串的自定义版:char*strcpy(char*dest,constchar*source);//该函数返回dest的值,即字符串首地址(指针练习,...
编写程序,实现复制字符串的自定义版:
char* strcpy(char * dest,const char * source);
//该函数返回dest的值,即字符串首地址
(指针练习,求完整C++程序,谢谢) 展开
char* strcpy(char * dest,const char * source);
//该函数返回dest的值,即字符串首地址
(指针练习,求完整C++程序,谢谢) 展开
1个回答
展开全部
#include <iostream>
using namespace std;
char * strcpy(char *dest,const char *source) { char *p=dest,*q=(char *)source;
while ( *p ) p++; while ( *q) { *p=*q; p++; q++; } *p=0;
return dest;
}
void main() { char s[256],t[256];
cin>>s; cin>>t; cout<<strcpy(s,t)<<endl;
}
using namespace std;
char * strcpy(char *dest,const char *source) { char *p=dest,*q=(char *)source;
while ( *p ) p++; while ( *q) { *p=*q; p++; q++; } *p=0;
return dest;
}
void main() { char s[256],t[256];
cin>>s; cin>>t; cout<<strcpy(s,t)<<endl;
}
追问
为啥运行不了呀
追答
改了一下,增加了一个q变量。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询