Examveda
Examveda

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);

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


This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Related Questions on Arrays and Strings