what does strcmp return code example
Example 1: 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 );
Example 2: string compare in c
strcmp(str1, str2) = 32
strcmp(str1, str3) = 0