Compares two objects, byte by byte. The compare operation starts with the first byte in each object.
#include <string.h> int memcmp (const void *s1, const void *s2, size_t size);
If size is zero, the two objects are considered equal.
x | An integer less than, equal to, or greater than 0, depending on whether the lexical value of the first object is less than, equal to, or greater than that of the second object. |