代码改变世界

memcpy memset

  钟铧若岩  阅读(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

 

相关博文:
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
点击右上角即可分享
微信分享提示