What will the given C code do?
int memcmp(const void *str1, const void *str2, size_t n)
Answer: A
In the C library function int memcmp(const void *str1, const void *str2, size_t n)) is used to compare the first n bytes of memory area str1 and memory area str2.