Header: string.h
Syntax:
extern void *memmove
(
void *string_1,
const void *string_2,
size_t n
);
Purpose: Function copies n characters from string_2 into string_1. Copying takes place as if the n characters are copied into a temporary array of n characters.
|
|
|