how does strcmp work code example
Example: strcmp
return
>0 if first string is large
<0 if first string is short
0 if strings are equal
int strcmp ( const char * str1, const char * str2 );
return
>0 if first string is large
<0 if first string is short
0 if strings are equal
int strcmp ( const char * str1, const char * str2 );