模拟实现memcpy!!!
#include<stdio.h> //模拟实现memcpy#include<string.h>#include<assert.h>void my_memcpy( char* arr2, const char *arr1,