How to use and Implement own memcmp in C
The memcmp function compares the first n characters of the object pointed to by s1 to the first n characters of the object pointed to by s2. If the n characters of s1 and s2 are the same then it returns 0, otherwise, it returns a non-zero value. Syntax of memcmp in C: int memcmp(const […]
How to use and Implement own memcmp in C Read More »