memcpy
 
Syntax

         

#include "mem.h"

void *memcpy( void *to, const void *from, unsigned int count );

The function memcpy() copies count characters from the array from to the array to.

The return value of memcpy() is to. The behavior of memcpy() is undefined if to and from overlap.