What does the following function returns void *memmove(void *s1,const void s2, size_t n);?

What does the following function returns void *memmove(void *s1,const void s2, size_t n);? Correct Answer returns the value of s1

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.
Bissoy MCQ

Related Questions

void *memcpy(void *dest, const void *src, size_t n) What does the following code do?
What is "a" in the given C code?
size_t wcstombs(char *s, const wchar_t *a, size_t n)
void * malloc(size_t n) returns?
What will the given C code do?
int memcmp(const void *str1, const void *str2, size_t n)
What happens if the following program is compiled and executed? interface MyInterface{ void display(); } interface MySubInterface extends MyInterface{ void display(); } public class Test implements MySubInterface{ public void display(){ System.out.print("Welcome to Examveda."); } public static void main(String args[]){ Test t = new Test(); t.display(); } }