How to use and Implement own strcmp in C
The strcmp function compares the string pointed to by s1 to the string pointed to by s2. If two strings are the same then strcmp() returns 0, otherwise, it returns a non-zero value. Syntax strcmp in C: int strcmp(const char *s1, const char *s2); Parameters: s1— pointer to the string1. s2— pointer to the string2 […]
How to use and Implement own strcmp in C Read More »




