Which of the following is the right syntax to copy n characters from the object pointed to by s2 into the object pointed to by s1?
Answer: A
The memcpy() function copies n characters from the object pointed to by s2 into the object pointed to by s1. If copying takes place between objects that overlap, the behavior is undefined.