语法:
#include <cstring> void *memcpy( void *to, const void *from, size_t count );
memcpy() 从数组 from 拷贝 count 个字符到 to。
memcpy() 的返回值是 to。
如果 to 和 from 重叠,memcpy()的行为未定义。
相关主题: memchr, memcmp, memmove, memset, strcpy, strlen, strncpy