What does the following function returns void *memmove(void *s1,const void s2, size_t n);?
Answer: A
The memmove() function copies n characters from the object pointed to by s2 into the object pointed to by s1.The memmove() function returns the value of s1.