#include <iostream>
using namespace std;
int main()
{
char *p=new char[10];
// *p="zds" 错误
strcpy(p,"zds");
char *q=new char[10];
// q=p 错误
// *q=*p; 错误
strcpy(q,p);
cout<<p<<endl;
cout<<q<<endl;
return 0;
}
#include <iostream>
using namespace std;
int main()
{
char *p=new char[10];
// *p="zds" 错误
strcpy(p,"zds");
char *q=new char[10];
// q=p 错误
// *q=*p; 错误
strcpy(q,p);
cout<<p<<endl;
cout<<q<<endl;
return 0;
}
上一篇:基于线性表的堆栈
下一篇:初学者学习C++的50条忠告
加密:为你的长字符串提供最高级别的保护!!!
实现strcpy(字符串拷贝)
c语言:两种方法实现字符串拷贝strcpy
【C语言】strcpy() 复制字符串
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M