C/C++教程

C-(内存函数)内存拷贝函数

本文主要是介绍C-(内存函数)内存拷贝函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#define _CRT_SECURE_NO_WARNINGS 1

#include<stdio.h>
#include<string.h>
#include<assert.h>

//内存操作函数
//memcpy-内存拷贝

int main()
{
    int arr1[10] = { 1,2,3,4,5,6,7,8,9,10 };
    int arr2[10] = { 0 };
    memcpy(arr2, arr1, 20);
    int* p = arr2;
    int i = 0;
    int sz = sizeof(arr2) / sizeof(arr2[0]);
    for (i = 0; i < sz; i++)
    {
        printf("%d ", *p++);
    }
    return 0;
}

 

这篇关于C-(内存函数)内存拷贝函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!