memcpy memset
2024-01-04 14:49 钟铧若岩 阅读(11) 评论(0) 编辑 收藏 举报struct STUDENT { char name[20]; int age; }; int arr1[] = { 1,2,3,4,5,6,7,8,9,10 }; int arr2[10] = { 0 }; //使用memcpy()函数将arr1数组的前20字节(即前5个整形)拷进arr2中 memcpy(arr2, arr1, 20); memset(arr2,0,8); for (int i = 0; i < 10; i++) printf("%d\n", arr2[i]); struct STUDENT person = { "Pierre de Fermat",46 }; struct STUDENT person_copy = { 0 }; /* 使用memcpy拷贝结构体: */ memcpy(&person_copy, &person, sizeof(person)); printf("person_copy: %s, %d \n", person_copy.name, person_copy.age);
输出结果:
0
0
3
4
5
0
0
0
0
0
person_copy: Pierre de Fermat, 46
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?