memcpy()

Syntax:

#include <string.h>
void *memcpy( void *to, const void *from, size_t count );



Description:
The function memcpy() copies count characters from the array from to the array to. memcpy() returns to. The behavior of memcpy() is undefined if to and from overlap.

Related Topics:
memmove()

Vadim avatar

Vadim