Implementing strcmp

int strcmp ( const char \*s1, const char \*s2 );
```strcmp will accept two strings. It will return an integer. This integer will either be:  

Negative if s1 is less than s2.
Zero if s1 and s2 are equal.
Positive if s1 is greater than s2.


See also