Custom string compare function in C | Simplest Codings
Here's a simple implementation of strcmp function of string library. It returns -1 if the first string is less than second , 1 if second string is less than first and 0 if the strings are equal. #include #include int main() { char *string1,*string2; //var
simplestcodings.blogspot.com |