Strcmp
Compares two strings to see if they are the same.
Parameters:
(const string1[], const string2[], bool:ignorecase, length)
string1 The first string to compare.
string2 The second string to compare.
ignorecase (optional) When set to true, the case doesn't matter - HeLLo is the same as Hello. When false, they're not the same.
length (optional) When this length is set, the first x chars will be compared - doing "Hello" and "Hell No" with a length of 4 will say it's the same string.
Returns -1 if string1 comes before string2
1 if string1 comes after string2
0 if the strings are the same (for the matched length).
when you use !strcmp, in fact you are checking if the sentence return 0(if the strings are the same)
Sorry possibles errors in English because i don't speak english very good