memcpy的使用与模式实现
void * memcpy ( void * destination, const void * source, size_t num );目录使用模拟实现注意事项复制内存块,将num字节值从源指向的位置直接复制到目标所指向的内存块。(strcpy只能针对字符串)使用#include<stdlib.h>#include<stdio.h>int main(){ int arr[] = { 1,2,3,4,5,6,7,8,9,10 };...