编写程序,将字符串str1复制到字符串str2中,不能用strcpy函数,并显示出来

[复制链接]
查看11 | 回复1 | 2019-11-18 11:06:35 | 显示全部楼层 |阅读模式
#includeusing namespace std;int main(){char str1[]="I love China!",str2[20];void Strcpy(char *p1,char *p2);Strcpy(str2,str1);coutvoid strcpy(char str1[],char str2[]){//自定义字符串拷贝函数 int i=0; while(str2!='\0')str1=str2[i++]; str1='\0';}void main(){ char str1[10],str2[
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行