关于strcpy_s
#include"stdafx.h" #include<iostream> #include<cstring> int main() { using namespace std; char animal[20] = "bear"; const char* bird = "wren"; char* ps; cout << "Enter a kind of animal: "; cin >> animal; ps = animal; cout << "Before using strcpy_s(): " << endl; cout << animal << " at " << (int *)animal << endl; cout << ps << " at " << (int*)ps << endl; ps = new char[strlen(animal) + 1]; cout << "sizeof ps: " << sizeof ps << endl; strcpy_s(ps,strlen(animal)+1, animal); cout << "After using strcpy_s(): " << endl; cout << animal << " at " << (int *)animal << endl; cout << ps << " at " << (int*)ps << endl; delete [] ps; cin.get(); cin.get(); return 0; }
strlen 三个参数的情况下,第二个参数表示numberOfElements
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 如何打造一个高并发系统?