What will be the output of the following C code?
const char pla[] = "string1";
const char src[] = "string2";
printf("Before memmove place= %s, src = %s\n", pla, src);
memmove(pla, src, 7);
printf("After memmove place = %s, src = %s\n", pla, src);
Answer: A
In the C library function void *memmove(void *str1, const void *str2, size_t n) copies n characters from str2 to str1.