Vidyalelo
C Programming · Q101

Arrays and Strings

Programming · C Programming · question 101

Q101

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?

A.
void *memcpy(void *s1,const void *s2,size_t n);
Answer
B.
void *memcpy(void *s2, const void *s1, size_t n);
C.
void memcpy(void *s1,const void *s2, size_t n);
D.
void memcpy(void *s2,const void *s1,size_t n);

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board