strcpy_s与strcpy的区别 #include<iostream> #include<cstring> using namespace std; void Test(void) { char *str1=NULL; str1=new char[20]; char str[7]; strcpy_s(str1,20,”hello world”);//三个参数 strcpy_s(str,”hello”);//两个参数但如果:char *str=new char[7];会出错:提示不支持两个参数 cout<<“strlen(str1):”<<strlen(str1)<<endl<<“strlen(str):”<<strlen(str)<<endl; printf(str1); printf(” ”); cout<<str<<endl; } int main() { Test(); return 0; } #include<iostream> #include<string.h> using name space std; void Test(void ) { char *str1=NULL; str1=newchar[20]; char str[7]; strcpy_s(str1,20,”hello world”);//三个参数 strcpy_s(str,”hello”);//两个参数但如果:char *str=new char[7];会出错:提示不支持两个参数 cout<<“strlen(str1):”<<strlen(str1)<<endl<<“strlen(str):”<<strlen(str)<<endl; printf(str1); printf(” ”); cout<<str<<endl; } int main()
2024最新激活全家桶教程,稳定运行到2099年,请移步至置顶文章:https://sigusoft.com/99576.html
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。 文章由激活谷谷主-小谷整理,转载请注明出处:https://sigusoft.com/83371.html