Defined in header <string.h> (1) void* memcpy( void *dest, const void *src, size_t count ); (until C99) void* memcpy( void *restrict dest, const void *restrict src, size_t count ); (since C99) errno_t memcpy_s( void *restrict dest, rsize_t destsz,
const void *restrict src, rsize_t count ); (2) (since C11)
1) Copies count characters from the object pointed to by src to the object pointed to by dest. Both objects are interpreted as arrays of uns