Challenge: Implement memcmp
Test your knowledge by solving this coding challenge.
We'll cover the following...
The memcmp function
The memcmp function comes from the C standard library. It allows us to compare two memory areas for equality at the byte level.
The header is as follows:
...